From df1858b4244cc9f1067cc4d92e5815e12e4b3fd3 Mon Sep 17 00:00:00 2001 From: Bohdan Triapitsyn Date: Mon, 2 Feb 2026 00:18:12 +0200 Subject: [PATCH] fix(ui): stop persisting settings dialog state --- packages/ui/src/stores/useUIStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/stores/useUIStore.ts b/packages/ui/src/stores/useUIStore.ts index ed957e94..2ae1d413 100644 --- a/packages/ui/src/stores/useUIStore.ts +++ b/packages/ui/src/stores/useUIStore.ts @@ -669,7 +669,7 @@ export const useUIStore = create()( activeMainTab: state.activeMainTab, sidebarSection: state.sidebarSection, isSessionCreateDialogOpen: state.isSessionCreateDialogOpen, - isSettingsDialogOpen: state.isSettingsDialogOpen, + // Note: isSettingsDialogOpen intentionally NOT persisted showReasoningTraces: state.showReasoningTraces, showTextJustificationActivity: state.showTextJustificationActivity, autoDeleteEnabled: state.autoDeleteEnabled,