diff --git a/src/BottomRow.tsx b/src/BottomRow.tsx index ad4cbe0..51223af 100644 --- a/src/BottomRow.tsx +++ b/src/BottomRow.tsx @@ -7,10 +7,10 @@ export function BottomRow(props: BottomRowProps) { const { wordLength, totalScore } = props; const cells = Array(wordLength) .fill(0) - .map(() => ); + .map((_, i) => ); return ( - + {cells} );