Skip to content

Commit d7e79ff

Browse files
committed
Add unique keys to elements in DistributionReport component for improved rendering
1 parent 03ac197 commit d7e79ff

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/DistributionReport.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@ export const DistributionReport = (
332332
};
333333
}
334334
);
335+
335336
return (
336337
<div key={column + column2}>
337338
<GroupBarChart
@@ -443,7 +444,7 @@ export const DistributionReport = (
443444
);
444445

445446
return (
446-
<div>
447+
<div key={column + column2}>
447448
<h2 className="text-center font-bold mt-2 text-[12px]">
448449
{column} vs {column2}
449450
</h2>

0 commit comments

Comments
 (0)