Skip to content

Commit

Permalink
Merge pull request #10 from vintasoftware/fix-missing-key
Browse files Browse the repository at this point in the history
Add missing `key` prop when listing all examples
  • Loading branch information
fjsj authored Jan 16, 2024
2 parents d10eb6b + c68c2f9 commit 84cf7cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/components/Docs/ExampleLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export function ExampleLinks({ linksData }: { linksData: ExampleDataType[] }) {
return (
<Stack spacing={2} paddingBottom={2}>
{linksData.map((item) => (
<ExampleDocLink item={item} />
<ExampleDocLink key={item.title} item={item} />
))}
</Stack>
);
Expand Down

0 comments on commit 84cf7cb

Please sign in to comment.