From 9784eb4c0b2b82539d50fc60a0af3e5140404461 Mon Sep 17 00:00:00 2001 From: Chanwoo An Date: Mon, 20 Oct 2025 11:52:29 +0900 Subject: [PATCH] fix: load default settings when sessionStorage is empty --- src/lib/components/chat/Chat.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index fc663a3e2a..b4df96204b 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -192,6 +192,8 @@ codeInterpreterEnabled = input.codeInterpreterEnabled; } } catch (e) {} + } else { + await setDefaults(); } const chatInput = document.getElementById('chat-input');