Skip to content

Commit

Permalink
refactor: key 올바르게 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
pepperdad committed Nov 26, 2024
1 parent 11edb43 commit ce75101
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/commons/renewTimePicker/RenewTimePicker.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ const RenewTimePicker = ({
<Spacing marginBottom="2.4" />

<S.TimeGrid>
{minutes.map((min) => (
{minutes.map((min, i) => (
<S.GridButton
key={min}
key={`min-${i}`}
$isActive={selectedMinute === min}
onClick={() => onChangeTime("minute", min)}
>
Expand Down

0 comments on commit ce75101

Please sign in to comment.