diff --git a/components/Mobile/Navbar.tsx b/components/Mobile/Navbar.tsx index 8728476..f9ff9c7 100644 --- a/components/Mobile/Navbar.tsx +++ b/components/Mobile/Navbar.tsx @@ -9,7 +9,7 @@ interface Props { export const Navbar: FC = ({ selectedConversation, onNewConversation }) => { return ( -
+
+ ); }; diff --git a/components/Sidebar/Sidebar.tsx b/components/Sidebar/Sidebar.tsx index 5f6d298..03fc41c 100644 --- a/components/Sidebar/Sidebar.tsx +++ b/components/Sidebar/Sidebar.tsx @@ -40,8 +40,8 @@ export const Sidebar: FC = ({ loading, conversations, lightMode, selected }, [searchTerm, conversations]); return ( -
-
+
+ {conversations.length > 1 && ( = ({ loading, conversations, lightMode, selected onExportConversations={onExportConversations} onImportConversations={onImportConversations} /> -
+ ); }; diff --git a/pages/index.tsx b/pages/index.tsx index b57eeea..5af5df4 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -352,7 +352,7 @@ export default function Home() { /> {selectedConversation && ( -
+
-
+
{showSidebar ? ( <> -
-
+ + )} );