From 9f9fb3403d4a190ba86cec6162f0bdf215002307 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Mon, 19 May 2025 02:07:41 +0400 Subject: [PATCH] refac --- src/lib/components/layout/SearchModal.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/layout/SearchModal.svelte b/src/lib/components/layout/SearchModal.svelte index a5c41cb58..4a9d910dc 100644 --- a/src/lib/components/layout/SearchModal.svelte +++ b/src/lib/components/layout/SearchModal.svelte @@ -40,7 +40,7 @@ } else { searchDebounceTimeout = setTimeout(async () => { chatList = await getChatListBySearchText(localStorage.token, query, page); - }, 200); + }, 500); } if ((chatList ?? []).length === 0) {