This commit is contained in:
Timothy Jaeryang Baek 2025-05-19 02:01:07 +04:00
parent 417ba4980a
commit c6580a2a02

View File

@ -33,15 +33,14 @@
clearTimeout(searchDebounceTimeout);
}
if (query === '') {
page = 1;
chatList = null;
if (query === '') {
chatList = await getChatList(localStorage.token, page);
} else {
searchDebounceTimeout = setTimeout(async () => {
page = 1;
chatList = null;
chatList = await getChatListBySearchText(localStorage.token, query, page);
}, 100);
}, 200);
}
if ((chatList ?? []).length === 0) {