diff --git a/package.json b/package.json index b8ca7382..c68207de 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openscan", - "version": "1.2.3-alpha", + "version": "1.2.4-alpha", "private": true, "type": "module", "packageManager": "bun@1.1.0", diff --git a/scripts/audit.sh b/scripts/audit.sh index 1da20e39..55924383 100755 --- a/scripts/audit.sh +++ b/scripts/audit.sh @@ -8,7 +8,7 @@ echo "Generating package-lock.json..." npm i --package-lock-only --silent echo "Running npm audit..." -npm audit "$@" || true +npm audit --audit-level=moderate "$@" echo "Cleaning up..." rm -f package-lock.json diff --git a/src/App.tsx b/src/App.tsx index 3ba0fcab..d09f0a50 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -8,6 +8,7 @@ import ErrorBoundary from "./components/common/ErrorBoundary"; import Footer from "./components/common/Footer"; import { IsometricBlocks } from "./components/common/IsometricBlocks"; import NotificationDisplay from "./components/common/NotificationDisplay"; +import ValidateNetwork from "./components/common/ValidateNetwork"; import Navbar from "./components/navbar"; import "./styles/base.css"; import "./styles/styles.css"; @@ -148,17 +149,19 @@ function AppContent() { } /> } /> } /> - {/* EVM network routes */} - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> - } /> + {/* EVM network routes — validated */} + }> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } /> + } />