From b8e84b38bf54ef6df154111bfd8013e5a358ab97 Mon Sep 17 00:00:00 2001 From: jwo0o0 Date: Fri, 23 Feb 2024 07:34:04 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=A3=BC=ED=96=89=20=EA=B8=B0=EB=A1=9D?= =?UTF-8?q?=20=EC=B5=9C=EA=B7=BC=EC=88=9C=EC=9C=BC=EB=A1=9C=20=EC=A0=95?= =?UTF-8?q?=EB=A0=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Note/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Note/index.tsx b/src/components/Note/index.tsx index cd9ddc1..aaba589 100644 --- a/src/components/Note/index.tsx +++ b/src/components/Note/index.tsx @@ -11,7 +11,7 @@ export const Note = () => { useEffect(() => { const response = historyAPI(); response.then((res) => { - setData(res); + setData(res.reverse()); }); }, []);