From f78027247be2aec12a753375ac8ce1155d912d6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Hatcher?= Date: Fri, 25 Oct 2024 17:55:21 +0200 Subject: [PATCH] FIX: Make biome happy --- webapp/src/App.css | 5 +++-- webapp/src/App.tsx | 4 ++-- webapp/src/components/worksheet.tsx | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/webapp/src/App.css b/webapp/src/App.css index a27ecce..98ad676 100644 --- a/webapp/src/App.css +++ b/webapp/src/App.css @@ -4,6 +4,7 @@ margin: 0px; border: none; } -html, body { +html, +body { overscroll-behavior: none; -} \ No newline at end of file +} diff --git a/webapp/src/App.tsx b/webapp/src/App.tsx index 4782a9a..7152687 100644 --- a/webapp/src/App.tsx +++ b/webapp/src/App.tsx @@ -20,7 +20,7 @@ import { IronCalcIcon } from "./icons"; function App() { const [model, setModel] = useState(null); const [workbookState, setWorkbookState] = useState( - null + null, ); useEffect(() => { @@ -54,7 +54,7 @@ function App() { if (!model || !workbookState) { return ( - +
Loading IronCalc
); diff --git a/webapp/src/components/worksheet.tsx b/webapp/src/components/worksheet.tsx index e6c0589..13ca38c 100644 --- a/webapp/src/components/worksheet.tsx +++ b/webapp/src/components/worksheet.tsx @@ -436,7 +436,7 @@ const Wrapper = styled("div")({ left: 0, right: 0, bottom: NAVIGATION_HEIGH + 1, - overscrollBehavior: "none" + overscrollBehavior: "none", }); const SheetCanvas = styled("canvas")`