diff --git a/src/lib/components/layout/Sidebar/ChatItem.svelte b/src/lib/components/layout/Sidebar/ChatItem.svelte index 1e66026d6..3a4f16e79 100644 --- a/src/lib/components/layout/Sidebar/ChatItem.svelte +++ b/src/lib/components/layout/Sidebar/ChatItem.svelte @@ -79,9 +79,6 @@ let mouseOver = false; let draggable = false; - $: if (mouseOver) { - loadChat(); - } const loadChat = async () => { if (!chat) { @@ -209,8 +206,7 @@ 'text/plain', JSON.stringify({ type: 'chat', - id: id, - item: chat + id: id }) );