diff --git a/extension/app/src/components/conversation/ConversationsListButton.tsx b/extension/app/src/components/conversation/ConversationsListButton.tsx index 6660e3d33879..38adc347b6ca 100644 --- a/extension/app/src/components/conversation/ConversationsListButton.tsx +++ b/extension/app/src/components/conversation/ConversationsListButton.tsx @@ -12,6 +12,7 @@ import { } from "@dust-tt/sparkle"; import { useConversations } from "@extension/components/conversation/useConversations"; import moment from "moment"; +import React from "react"; import { useNavigate, useParams } from "react-router-dom"; type GroupLabel = @@ -85,7 +86,7 @@ const Content = () => { ) : ( {Object.keys(conversationsByDate).map((dateLabel) => ( - <> + {conversationsByDate[dateLabel as GroupLabel].length > 0 && ( )} @@ -103,7 +104,7 @@ const Content = () => { }} /> ))} - + ))} ); @@ -126,7 +127,9 @@ export const ConversationsListButton = ({ /> - +
+ +
); diff --git a/extension/app/src/components/input_bar/InputBar.tsx b/extension/app/src/components/input_bar/InputBar.tsx index 240116fb1c8a..f90f5552a0e4 100644 --- a/extension/app/src/components/input_bar/InputBar.tsx +++ b/extension/app/src/components/input_bar/InputBar.tsx @@ -268,7 +268,7 @@ export function AssistantInputBar({