From 6d2eaaf6024115f1662fbd023b3a65a8f59f1c87 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sun, 6 Oct 2024 00:09:37 -0700 Subject: [PATCH] refac --- src/lib/components/chat/ChatControls.svelte | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/lib/components/chat/ChatControls.svelte b/src/lib/components/chat/ChatControls.svelte index 96d168fe9..f5889869a 100644 --- a/src/lib/components/chat/ChatControls.svelte +++ b/src/lib/components/chat/ChatControls.svelte @@ -85,7 +85,13 @@ }); $: if (!chatId) { + showControls.set(false); showOverview.set(false); + showArtifacts.set(false); + + if ($showCallOverlay) { + showCallOverlay.set(false); + } }