From 6b124643cea263225329898dd1a23005678ac03e Mon Sep 17 00:00:00 2001 From: parksangseok <> Date: Sun, 8 Dec 2024 20:52:56 +0900 Subject: [PATCH] =?UTF-8?q?BestItem=20=ED=95=A8=EC=88=98=20>=20bestItems?= =?UTF-8?q?=20=ED=95=A8=EC=88=98=EB=A1=9C=20=ED=95=A8=EC=88=98=EB=AA=85=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ProductBestList.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/ProductBestList.jsx b/src/components/ProductBestList.jsx index f67647b2d..8c3063e22 100644 --- a/src/components/ProductBestList.jsx +++ b/src/components/ProductBestList.jsx @@ -9,7 +9,7 @@ export default function ProductBestList() { useEffect(() => { - async function BestItem() { + async function bestItems() { try { let allItems = []; const totalPages = Math.ceil(175 / 10); @@ -29,7 +29,7 @@ export default function ProductBestList() { } }; - BestItem() + bestItems() }, [])