From e599d5db3c052cf251be61a98a7d353b4a1881be Mon Sep 17 00:00:00 2001 From: "Timothy J. Baek" Date: Fri, 20 Sep 2024 23:19:20 +0200 Subject: [PATCH] fix: chat download as plain text issue --- src/lib/components/layout/Navbar/Menu.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/layout/Navbar/Menu.svelte b/src/lib/components/layout/Navbar/Menu.svelte index 16476b3c7..2163d80e4 100644 --- a/src/lib/components/layout/Navbar/Menu.svelte +++ b/src/lib/components/layout/Navbar/Menu.svelte @@ -46,7 +46,7 @@ type: 'text/plain' }); - saveAs(blob, `chat-${_chat.title}.txt`); + saveAs(blob, `chat-${chat.chat.title}.txt`); }; const downloadPdf = async () => {