Remove +1

This commit is contained in:
AbdBarho
2023-01-16 07:35:40 +01:00
committed by GitHub
parent 8accd0dfbe
commit 425b698d62
@@ -8,7 +8,7 @@ import useSWRImmutable from "swr/immutable";
const columns = [
{
Header: "Rank",
accessor: (item: LeaderboardEntity, rowIndex: number) => "#" + (item.rank + 1),
accessor: (item: LeaderboardEntity, rowIndex: number) => "#" + item.rank,
style: { width: "90px" },
},
{