Removed unused variable

This commit is contained in:
Eugene 2023-07-21 16:27:17 +03:00
parent 9ef465b72d
commit 8aad89631b
1 changed files with 0 additions and 4 deletions

View File

@ -58,9 +58,6 @@ export class Sheet {
const lastRowIdx = this.root.viewport.lastRow + 3 const lastRowIdx = this.root.viewport.lastRow + 3
const firstColIdx = this.root.viewport.firstCol const firstColIdx = this.root.viewport.firstCol
let rowsCount = 0
for(let row = firstRowIdx; row <= lastRowIdx; row++) { for(let row = firstRowIdx; row <= lastRowIdx; row++) {
for(let col = firstColIdx; col <= lastColIdx; col++ ) { for(let col = firstColIdx; col <= lastColIdx; col++ ) {
@ -69,7 +66,6 @@ export class Sheet {
this.renderCell({column: col, row}) this.renderCell({column: col, row})
} }
rowsCount++;
} }
} }