We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fce5a4 commit 4126479Copy full SHA for 4126479
apps/web/src/components/Developers/UseCases/assets/Gasless.tsx
@@ -36,9 +36,9 @@ export function AnimatedGasless() {
36
</div>
37
38
<div className="ml-12 flex h-full items-end gap-2">
39
- {barHeights.map((height) => (
+ {barHeights.map((height, index) => (
40
<div
41
- key={Math.random()}
+ key={index}
42
className="flex-1 rounded-t-md bg-dark-purple-40 transition-all duration-500"
43
style={{ height: `${height}%` }}
44
/>
0 commit comments