routes to TS

This commit is contained in:
Alex Holliday
2026-02-14 00:08:28 +00:00
parent 2f6dbe9a3a
commit 86fd535eaf
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -9,8 +9,8 @@ import { useTheme } from "@mui/material";
import { useTranslation } from "react-i18next";
interface NotFoundProps {
title: string;
desc: string;
title?: string;
desc?: string;
}
const NotFoundPage = ({ title, desc }: NotFoundProps) => {
@@ -3,6 +3,7 @@ import { ThemeProvider } from "@mui/material";
import { lightTheme, darkTheme } from "@/Utils/Theme/v2Theme";
import { useSelector } from "react-redux";
import type { RootState } from "@/store";
import { Navigate, Route, Routes as LibRoutes } from "react-router";
import RootLayout from "@/Components/v2/layout/RootLayout";
import NotFound from "@/Pages/NotFound";
@@ -59,7 +60,7 @@ import {
import CreateMonitor from "@/Pages/CreateMonitor";
const Routes = () => {
const mode = useSelector((state) => state.ui.mode);
const mode = useSelector((state: RootState) => state.ui.mode);
const v2theme = mode === "light" ? lightTheme : darkTheme;
return (
<LibRoutes>
@@ -390,12 +391,11 @@ const Routes = () => {
/>
<Route
exact
path="/register/:token"
element={
<>
<ThemeProvider theme={v2theme}>
<AuthRegister superAdminExists={true} />
<AuthRegister />
</ThemeProvider>
</>
}