diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index c48a204f9..7e0d0bd6d 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -1686,7 +1686,7 @@ const stopResponse = async () => { if (taskId) { const res = await stopTask(localStorage.token, taskId).catch((error) => { - toast.error(error); + toast.error(`${error}`); return null; });