This commit is contained in:
Timothy Jaeryang Baek 2025-08-06 23:36:43 +04:00
parent 93a91a678a
commit 4797799400

View file

@ -97,6 +97,12 @@
} else {
searchDebounceTimeout = setTimeout(async () => {
chatList = await getChatListBySearchText(localStorage.token, query, page);
if ((chatList ?? []).length === 0) {
allChatsLoaded = true;
} else {
allChatsLoaded = false;
}
}, 500);
}