Skip to content

Commit

Permalink
refactor: key props 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
junghaesung79 committed Jan 25, 2025
1 parent ba2d5ef commit 1c32ad2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pages/IndexPage/components/IndexStore/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ function IndexStore() {
? categories?.shop_categories.slice(0, 12).map((category) => (
category.name === '전체보기' ? (
<div
key={category.id}
className={styles.category__benefit}
onClick={() => handleStoreClick()}
aria-hidden
Expand Down Expand Up @@ -79,6 +80,7 @@ function IndexStore() {
: categories?.shop_categories.slice(0, 12).map((category) => (
category.name === '전체보기' ? (
<div
key={category.id}
className={styles.category__benefit}
onClick={() => handleStoreClick()}
aria-hidden
Expand Down

0 comments on commit 1c32ad2

Please sign in to comment.