From a3ca39f377ded8acd8e76c80801535dacd97ec78 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sun, 5 Jan 2025 01:33:12 -0800 Subject: [PATCH] refac --- src/lib/components/chat/Chat.svelte | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index d5982af90..609a4ae6d 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -1151,13 +1151,6 @@ if (done) { message.done = true; - if ($settings.notificationEnabled && !document.hasFocus()) { - new Notification(`${message.model}`, { - body: message.content, - icon: `${WEBUI_BASE_URL}/static/favicon.png` - }); - } - if ($settings.responseAutoCopy) { copyToClipboard(message.content); }