We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfd2ea9 commit 5918316Copy full SHA for 5918316
site/src/components/CollapsibleSummary/CollapsibleSummary.stories.tsx
@@ -59,8 +59,7 @@ export const ManyChildren: Story = {
59
<>
60
{Array.from({ length: 10 }).map((_, i) => (
61
<div
62
- // biome-ignore lint/suspicious/noArrayIndexKey: <explanation>
63
- key={i}
+ key={`option-${i + 1}`}
64
className="p-2 border border-border rounded-md border-solid"
65
>
66
Option {i + 1}
0 commit comments