From 95fdbe13aec16a11ec4cc81b16eafbba09c21d62 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Mon, 23 Dec 2024 23:13:19 -0800 Subject: [PATCH] move all conversations button to bottom of side panel --- .../app/components/allConversations/allConversations.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/interface/web/app/components/allConversations/allConversations.tsx b/src/interface/web/app/components/allConversations/allConversations.tsx index 52c6806e..53ad20bf 100644 --- a/src/interface/web/app/components/allConversations/allConversations.tsx +++ b/src/interface/web/app/components/allConversations/allConversations.tsx @@ -420,9 +420,6 @@ interface SessionsAndFilesProps { function SessionsAndFiles(props: SessionsAndFilesProps) { return (
- {props.data && props.data.length > 5 && ( - - )} {props.sideBarOpen && ( )} + {props.data && props.data.length > 5 && ( + + )}
); } @@ -786,7 +786,7 @@ function ChatSessionsModal({ data, sideBarOpen }: ChatSessionsModalProps) { > - {sideBarOpen ? "Find Conversation" : ""} + {sideBarOpen ? "All Conversations" : ""}