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 538b7e5 commit e719675Copy full SHA for e719675
src/renderer/components/layout/EmojiSplash.tsx
@@ -31,9 +31,9 @@ export const EmojiSplash: FC<IEmojiSplash> = ({
31
</Stack>
32
33
{subHeadings.map((description, i) => {
34
+ const key = `error_description_${i}`;
35
return (
- // biome-ignore lint/suspicious/noArrayIndexKey: using index for key to keep the error constants clean
36
- <div className="text-center" key={`error_description_${i}`}>
+ <div className="text-center" key={key}>
37
{description}
38
</div>
39
);
0 commit comments