From a571ae4ec280cf38b5442b353c558112465d31a4 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sat, 5 Oct 2024 14:54:15 -0700 Subject: [PATCH] refac: only show resizer when controls is open --- src/lib/components/chat/ChatControls.svelte | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/lib/components/chat/ChatControls.svelte b/src/lib/components/chat/ChatControls.svelte index fe0dd2121..37544b2a8 100644 --- a/src/lib/components/chat/ChatControls.svelte +++ b/src/lib/components/chat/ChatControls.svelte @@ -127,11 +127,14 @@ {/if} {:else} - -
- -
-
+ + {#if $showControls} + +
+ +
+
+ {/if}