Skip to content

Commit 4126479

Browse files
committed
fix gasless animation
1 parent 5fce5a4 commit 4126479

File tree

1 file changed

+2
-2
lines changed
  • apps/web/src/components/Developers/UseCases/assets

1 file changed

+2
-2
lines changed

apps/web/src/components/Developers/UseCases/assets/Gasless.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ export function AnimatedGasless() {
3636
</div>
3737

3838
<div className="ml-12 flex h-full items-end gap-2">
39-
{barHeights.map((height) => (
39+
{barHeights.map((height, index) => (
4040
<div
41-
key={Math.random()}
41+
key={index}
4242
className="flex-1 rounded-t-md bg-dark-purple-40 transition-all duration-500"
4343
style={{ height: `${height}%` }}
4444
/>

0 commit comments

Comments
 (0)