Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasr8 committed Jul 18, 2024
1 parent 906bca6 commit a520d06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a520d06

Please sign in to comment.