From 49278e34498faec5f5902a577a542838339ec001 Mon Sep 17 00:00:00 2001 From: Xanh Date: Wed, 18 Dec 2024 15:26:05 +0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=AC=20remove=20unnecessary=20index=20f?= =?UTF-8?q?or=20each=20round?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/RoundsList.tsx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/components/RoundsList.tsx b/src/components/RoundsList.tsx index 8392d2a..58f2edf 100644 --- a/src/components/RoundsList.tsx +++ b/src/components/RoundsList.tsx @@ -76,15 +76,13 @@ function RoundsList(props: Props) { {rounds.length === 0 && } - {rounds.map((round, i) => { + {rounds.map((round) => { const { id, stats, timestamp } = round; return ( - - {`#${rounds.length - i} - ${formatDate(timestamp)}`} - + {formatDate(timestamp)}