Skip to content

Commit

Permalink
BestItem 함수 > bestItems 함수로 함수명 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
parksangseok committed Dec 8, 2024
1 parent 6a93951 commit 6b12464
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/ProductBestList.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function ProductBestList() {

useEffect(() => {

async function BestItem() {
async function bestItems() {
try {
let allItems = [];
const totalPages = Math.ceil(175 / 10);
Expand All @@ -29,7 +29,7 @@ export default function ProductBestList() {
}
};

BestItem()
bestItems()

}, [])

Expand Down

0 comments on commit 6b12464

Please sign in to comment.