From 875be6d90383dc066a1acc56a7d241cfc12e2f34 Mon Sep 17 00:00:00 2001 From: Gemini AI Date: Sat, 27 Dec 2025 12:46:06 +0400 Subject: [PATCH] fix(ui): export flushSessionPersistence from sessions barrel file --- packages/ui/src/stores/sessions.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/ui/src/stores/sessions.ts b/packages/ui/src/stores/sessions.ts index 5125ddc..4b864c2 100644 --- a/packages/ui/src/stores/sessions.ts +++ b/packages/ui/src/stores/sessions.ts @@ -26,6 +26,7 @@ import { setActiveParentSession, setActiveSession, setSessionDraftPrompt, + flushSessionPersistence, } from "./session-state" import { getDefaultModel } from "./session-models" @@ -113,5 +114,6 @@ export { setSessionDraftPrompt, updateSessionAgent, updateSessionModel, + flushSessionPersistence, } export type { SessionInfo }