From e5ade9404b01091bdc257cdfeb3cfc363a8dc808 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Fri, 24 Feb 2023 01:28:15 +0800 Subject: [PATCH] Test canceling debounce here if the fetch is faster than 1.5s --- src/components/timeline.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/timeline.jsx b/src/components/timeline.jsx index 3098e72e..53b0a60d 100644 --- a/src/components/timeline.jsx +++ b/src/components/timeline.jsx @@ -61,6 +61,8 @@ function Timeline({ } catch (e) { console.error(e); setUIState('error'); + } finally { + loadItems.cancel(); } })(); },