Timothy J. Baek 7 달 전
부모
커밋
6d2eaaf602
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      src/lib/components/chat/ChatControls.svelte

+ 6 - 0
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);
+		}
 	}
 </script>