Skip to content

Commit

Permalink
✨ feat(writings): add a key to writing list
Browse files Browse the repository at this point in the history
  • Loading branch information
syakoo committed Nov 5, 2023
1 parent 571b98c commit 952973d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/writings/WritingList/WritingList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const WritingList: React.FC<WritingListProps> = ({ metas }) => {
<WritingTab selectedType={type} />
<WritingTypeDescription type={type} />
</Col>
<Col as="ul" gap="200">
<Col key={type} as="ul" gap="200">
{filteredMetas.map((meta, i) => (
<FadeIn key={meta.id} as="li" delaySec={0.05 * i}>
<WritingBlock meta={meta} />
Expand Down

0 comments on commit 952973d

Please sign in to comment.