fix off by one error
This commit is contained in:
parent
a77d224c09
commit
89c1fab057
|
@ -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)
|
const items = new Array(21).fill(null)
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in New Issue