Skip to content

Commit 5918316

Browse files
committed
fix: update key
1 parent dfd2ea9 commit 5918316

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

site/src/components/CollapsibleSummary/CollapsibleSummary.stories.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,7 @@ export const ManyChildren: Story = {
5959
<>
6060
{Array.from({ length: 10 }).map((_, i) => (
6161
<div
62-
// biome-ignore lint/suspicious/noArrayIndexKey: <explanation>
63-
key={i}
62+
key={`option-${i + 1}`}
6463
className="p-2 border border-border rounded-md border-solid"
6564
>
6665
Option {i + 1}

0 commit comments

Comments
 (0)