aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/build-unix.sh1
-rw-r--r--scripts/build-windows.ps11
-rw-r--r--src/routes.tsx1
3 files changed, 3 insertions, 0 deletions
diff --git a/scripts/build-unix.sh b/scripts/build-unix.sh
index 42de96a1a..8dae9e5ee 100755
--- a/scripts/build-unix.sh
+++ b/scripts/build-unix.sh
@@ -106,6 +106,7 @@ command_exists asdf && asdf reshim nodejs
106# Now the meat..... 106# Now the meat.....
107pnpm i 107pnpm i
108pnpm prepare-code 108pnpm prepare-code
109pnpm lint
109pnpm test 110pnpm test
110 111
111# ----------------------------------------------------------------------------- 112# -----------------------------------------------------------------------------
diff --git a/scripts/build-windows.ps1 b/scripts/build-windows.ps1
index 1c2b175b2..ca4fabfe8 100644
--- a/scripts/build-windows.ps1
+++ b/scripts/build-windows.ps1
@@ -151,6 +151,7 @@ if ($ACTUAL_PNPM_VERSION -ne $EXPECTED_RECIPES_PNPM_VERSION) {
151# Now the meat..... 151# Now the meat.....
152& pnpm i 152& pnpm i
153& pnpm prepare-code 153& pnpm prepare-code
154& pnpm lint
154& pnpm test 155& pnpm test
155 156
156# ----------------------------------------------------------------------------- 157# -----------------------------------------------------------------------------
diff --git a/src/routes.tsx b/src/routes.tsx
index 04b6fa96f..e090012d8 100644
--- a/src/routes.tsx
+++ b/src/routes.tsx
@@ -51,6 +51,7 @@ class FerdiumRoutes extends Component<IProps> {
51 const errorProps = { error: routeProps.stores.globalError.error || {} }; 51 const errorProps = { error: routeProps.stores.globalError.error || {} };
52 52
53 return ( 53 return (
54 // @ts-expect-error Property 'encodeLocation' is missing in type 'HashHistory' but required in type 'History'.
54 <HistoryRouter history={history}> 55 <HistoryRouter history={history}>
55 <Routes> 56 <Routes>
56 <Route path="/auth" element={<AuthLayoutContainer {...routeProps} />}> 57 <Route path="/auth" element={<AuthLayoutContainer {...routeProps} />}>