From 5e56338bb3e9bb1bcf1ef1c1fe6afb9c7391d976 Mon Sep 17 00:00:00 2001 From: Josh Kingsley Date: Sun, 26 Oct 2025 21:22:05 +0200 Subject: fix(web): fix rendering selection --- web/src/index.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'web/src/index.ts') diff --git a/web/src/index.ts b/web/src/index.ts index a6f0ac7..f923c56 100644 --- a/web/src/index.ts +++ b/web/src/index.ts @@ -1,10 +1,7 @@ import Ratio from "./math/Ratio"; import { Cell, CellRef, Doc, Grid, mapRowsInRange } from "./types"; import { ActiveCellSelection, Selection } from "./selection"; -import renderGrid, { - getRenderedCell, - RenderedGrid, -} from "./components/grid/renderGrid"; +import renderGrid, { RenderedGrid } from "./components/grid/renderGrid"; function defaultDoc(): Doc { const defaultCells: Cell[] = Array.from({ length: 16 }, () => ({ -- cgit v1.2.3