Timothy Jaeryang Baek 3 달 전
부모
커밋
139e4f93cb
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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>