From f381850bb2bf07ae3120063b14ea47438e9c52d7 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Sat, 21 Sep 2024 04:04:34 +0200 Subject: [PATCH] refac --- src/lib/components/chat/Chat.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index 51b90892b..541ac5074 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -285,7 +285,7 @@ } showControls.subscribe(async (value) => { - if (controlPane) { + if (controlPane && !$mobile) { if (value) { controlPane.resize(parseInt(localStorage.getItem('chat-controls-size') || '35')); } else {