Skip to content

Commit 8c8dfb5

Browse files
fix(QuizzesStats): use dynamic label id for key prop
1 parent 65e53b7 commit 8c8dfb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Quiz/QuizzesStats.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ const QuizzesStats: React.FC = () => {
181181
},
182182
] satisfies Array<{ labelId: string; value: string }>
183183
).map(({ labelId, value }) => (
184-
<Stack key="labelId">
184+
<Stack key={labelId}>
185185
<Text mb="-2" color="body.medium">
186186
<Translation id={labelId} />
187187
</Text>

0 commit comments

Comments
 (0)