diff --git a/components/Sidebar/ClearConversations.tsx b/components/Sidebar/ClearConversations.tsx index a583c21..1bba3dc 100644 --- a/components/Sidebar/ClearConversations.tsx +++ b/components/Sidebar/ClearConversations.tsx @@ -19,7 +19,7 @@ export const ClearConversations: FC = ({ onClearConversations }) => { return isConfirming ? (
- +
{t('Are you sure?')} @@ -48,7 +48,7 @@ export const ClearConversations: FC = ({ onClearConversations }) => { ) : ( } + icon={} onClick={() => setIsConfirming(true)} /> ); diff --git a/components/Sidebar/Conversation.tsx b/components/Sidebar/Conversation.tsx index b8625c0..4ba766b 100644 --- a/components/Sidebar/Conversation.tsx +++ b/components/Sidebar/Conversation.tsx @@ -64,7 +64,7 @@ export const ConversationComponent: FC = ({ return ( = ({ />
) : ( -
-
{t('No conversations.')}
+
+ + {t('No conversations.')}
)}
diff --git a/components/Sidebar/SidebarButton.tsx b/components/Sidebar/SidebarButton.tsx index 8733dce..6f62be8 100644 --- a/components/Sidebar/SidebarButton.tsx +++ b/components/Sidebar/SidebarButton.tsx @@ -9,7 +9,7 @@ interface Props { export const SidebarButton: FC = ({ text, icon, onClick }) => { return (