Skip to content

Commit

Permalink
Add missing key prop when listing all examples
Browse files Browse the repository at this point in the history
  • Loading branch information
pamella committed Jan 16, 2024
1 parent d10eb6b commit c68c2f9
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 c68c2f9

Please sign in to comment.