diff --git a/ee/tabby-ui/lib/stores/chat-store.ts b/ee/tabby-ui/lib/stores/chat-store.ts index 052bc34..c5ae976 100644 --- a/ee/tabby-ui/lib/stores/chat-store.ts +++ b/ee/tabby-ui/lib/stores/chat-store.ts @@ -3,7 +3,7 @@ import { create } from 'zustand' import { persist } from 'zustand/middleware' import { nanoid } from '@/lib/utils' -const excludeFromState = ['_hasHydrated', 'setHasHydrated'] +const excludeFromState = ['_hasHydrated', 'setHasHydrated', "activeChatId"] export interface ChatState { chats: Chat[] | undefined