diff --git a/src/components/sheet.ts b/src/components/sheet.ts index 89f542f..89c5bc8 100644 --- a/src/components/sheet.ts +++ b/src/components/sheet.ts @@ -58,9 +58,6 @@ export class Sheet { const lastRowIdx = this.root.viewport.lastRow + 3 const firstColIdx = this.root.viewport.firstCol - - let rowsCount = 0 - for(let row = firstRowIdx; row <= lastRowIdx; row++) { for(let col = firstColIdx; col <= lastColIdx; col++ ) { @@ -69,7 +66,6 @@ export class Sheet { this.renderCell({column: col, row}) } - rowsCount++; } }