Parcourir la source

fix: call mode not working in landing page

Timothy J. Baek il y a 7 mois
Parent
commit
6f9080dfe0
1 fichiers modifiés avec 5 ajouts et 1 suppressions
  1. 5 1
      src/lib/components/chat/ChatControls.svelte

+ 5 - 1
src/lib/components/chat/ChatControls.svelte

@@ -83,7 +83,7 @@
 		document.removeEventListener('mouseup', onMouseUp);
 	});
 
-	$: if (!chatId) {
+	const closeHandler = () => {
 		showControls.set(false);
 		showOverview.set(false);
 		showArtifacts.set(false);
@@ -91,6 +91,10 @@
 		if ($showCallOverlay) {
 			showCallOverlay.set(false);
 		}
+	};
+
+	$: if (!chatId) {
+		closeHandler();
 	}
 </script>