From 89c1fab0576f7456452323ba0aa45d5a610a5e67 Mon Sep 17 00:00:00 2001 From: keyan Date: Tue, 22 Jun 2021 13:37:07 -0500 Subject: [PATCH] fix off by one error --- components/items.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/items.js b/components/items.js index aca5e91c..1259373f 100644 --- a/components/items.js +++ b/components/items.js @@ -27,7 +27,7 @@ export default function Items ({ variables, rank }) { ) } -function ItemsSkeleton ({ startRank = 1 }) { +function ItemsSkeleton ({ startRank = 0 }) { const items = new Array(21).fill(null) return (