Timothy Jaeryang Baek 3 months ago
parent
commit
139e4f93cb
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/lib/components/chat/Settings/Chats.svelte

+ 2 - 0
src/lib/components/chat/Settings/Chats.svelte

@@ -69,6 +69,7 @@
 			} else {
 				// Legacy format
 				await importChat(localStorage.token, chat, {}, false, null);
+			}
 		}
 
 		currentChatPage.set(1);
@@ -108,6 +109,7 @@
 	const handleArchivedChatsChange = async () => {
 		currentChatPage.set(1);
 		await chats.set(await getChatList(localStorage.token, $currentChatPage));
+
 		scrollPaginationEnabled.set(true);
 	};
 </script>