From 1f98c091f09862d09023822b9eba1d3e31935401 Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Thu, 2 May 2024 15:48:18 -0700 Subject: [PATCH] fix --- src/lib/components/chat/MessageInput.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/chat/MessageInput.svelte b/src/lib/components/chat/MessageInput.svelte index 26d4a8bed..063bb5e51 100644 --- a/src/lib/components/chat/MessageInput.svelte +++ b/src/lib/components/chat/MessageInput.svelte @@ -763,7 +763,7 @@ bind:value={prompt} on:keypress={(e) => { if ( - window.innerWidth > 1024 && + window.innerWidth > 1024 || !( 'ontouchstart' in window || navigator.maxTouchPoints > 0 ||