From a520d06d756fe1f61a203080df081cd3a0358bd6 Mon Sep 17 00:00:00 2001 From: Tomas Roun Date: Thu, 18 Jul 2024 11:50:47 +0200 Subject: [PATCH] Fix import --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index d573a28..95e297f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -25,7 +25,7 @@ import SettingsPage from './pages/Settings'; // Expose the db instance as a global variable for easier debugging (window as any).db = db; -const ScanPage = lazy(() => import('./pages/scan/Scan.tsx')); +const ScanPage = lazy(() => import('./pages/scan/Scan')); function isNumeric(v?: string) { return v && /^[1-9]\d*$/.test(v);