Skip to content

Commit

Permalink
Fix: 누락된 key prop을 추가한다
Browse files Browse the repository at this point in the history
  • Loading branch information
HaJunRyu committed Aug 29, 2024
1 parent d233d71 commit 7a96405
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/Table/Table.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,10 +188,10 @@ const TableColumnCell = <T extends object>({
return (
<Styled.TableColumn textAlign={column.textAlign}>
{titles.map((title, index) => (
<>
<Fragment key={title}>
{title}
{index !== titles.length - 1 && <br />}
</>
</Fragment>
))}
</Styled.TableColumn>
);
Expand Down

0 comments on commit 7a96405

Please sign in to comment.