Skip to content

Commit

Permalink
Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikh2000 authored and erikh2000 committed Jan 1, 2025
1 parent 5efd3f9 commit 153b262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/homeScreen/SheetPane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function _noSheetLoadedContent() {
return <div>No sheet loaded.</div>;
}

function _sheetContent(sheet:HoneSheet|null, selectedRowNo:number, _onRowSelect:(rowNo:number)=>void, horizontalScroll) {
function _sheetContent(sheet:HoneSheet|null, selectedRowNo:number, _onRowSelect:(rowNo:number)=>void, horizontalScroll:HorizontalScroll) {
if (!sheet) return _noSheetLoadedContent();
const onSelectCell = (_colNo:number, rowNo:number) => _onRowSelect(rowNo);
return <SheetTable
Expand Down

0 comments on commit 153b262

Please sign in to comment.