From 6e9661a70c6e7fb688b7ecc4a75b5d491a8e4388 Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Mon, 20 Feb 2023 20:58:53 +0800 Subject: [PATCH] Use the right way --- src/components/timeline.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/timeline.jsx b/src/components/timeline.jsx index 6692368e..78cb035b 100644 --- a/src/components/timeline.jsx +++ b/src/components/timeline.jsx @@ -50,7 +50,7 @@ function Timeline({ if (firstLoad) { setItems(value); } else { - setItems([...items, ...value]); + setItems((items) => [...items, ...value]); } setShowMore(!done); } else {