We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a20ba5 commit 9675a8aCopy full SHA for 9675a8a
src/components/page/theming/ColorAccordion/index.tsx
@@ -38,6 +38,7 @@ export default function ColorAccordion({ ...props }) {
38
39
return (
40
<li
41
+ key={color}
42
className={clsx({
43
[styles.colorMenuItem]: true,
44
[styles.colorMenuItemActive]: color === activeColor,
src/components/page/theming/LayeredColorsSelect/index.tsx
@@ -93,7 +93,7 @@ export default function LayeredColorsSelect({ ...props }) {
93
const codeColor = variation.rgb ? `rgb(${variation.value})` : `${variation.value}`;
94
95
96
- <tr>
+ <tr key={variation.name}>
97
<td className={styles.colorName}>{variation.name}</td>
98
<td className={styles.colorProperty}>
99
<code>{variation.property}</code>
0 commit comments