From 936721c49c046d947baf7fa57026f8e6e62e2437 Mon Sep 17 00:00:00 2001 From: vorahardik7 Date: Fri, 13 Feb 2026 16:45:37 -0800 Subject: [PATCH] fix: improve chat history mobile view --- apps/web/components/new/chat/index.tsx | 50 +++++++++++++------------- 1 file changed, 24 insertions(+), 26 deletions(-) diff --git a/apps/web/components/new/chat/index.tsx b/apps/web/components/new/chat/index.tsx index 47ee0917..2d51982f 100644 --- a/apps/web/components/new/chat/index.tsx +++ b/apps/web/components/new/chat/index.tsx @@ -660,31 +660,30 @@ export function ChatSidebar({ onModelChange={setSelectedModel} />
- {!isMobile && ( - { - setIsHistoryOpen(open) - if (open) { - fetchThreads() - analytics.chatHistoryViewed?.() - } else { - setConfirmingDeleteId(null) - } - }} - > - - - + { + setIsHistoryOpen(open) + if (open) { + fetchThreads() + analytics.chatHistoryViewed?.() + } else { + setConfirmingDeleteId(null) + } + }} + > + + + Chat History @@ -783,7 +782,6 @@ export function ChatSidebar({ - )}