From 53307497a87881234943d39877ea7c6803728da2 Mon Sep 17 00:00:00 2001 From: Zakher Masri Date: Sun, 27 Apr 2025 10:24:05 +0300 Subject: [PATCH] fix(website): duplicate key for children in `stats.tsx` --- apps/website/components/stats.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/website/components/stats.tsx b/apps/website/components/stats.tsx index 9b43afd..1e3ac55 100644 --- a/apps/website/components/stats.tsx +++ b/apps/website/components/stats.tsx @@ -158,10 +158,10 @@ export function GridPattern({ width, height, x, y, squares, ...props }: any) { /> {squares && ( - {squares.map(([x, y]: any) => ( + {squares.map(([x, y]: any, i: number) => (