Skip to content

Commit

Permalink
fix: chipGroup에 key prop 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
Todari committed Dec 17, 2024
1 parent 95b2fae commit 5ae1110
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const ChipGroup = ({color, texts}: Props) => {
return (
<div css={chipGroupStyle}>
{texts.map(text => (
<Chip color={color} text={text} />
<Chip key={text} color={color} text={text} />
))}
</div>
);
Expand Down

0 comments on commit 5ae1110

Please sign in to comment.