From cd17ecdadbb81d8bb9a0d5677c62147addb6ba32 Mon Sep 17 00:00:00 2001 From: Alex Holliday Date: Wed, 11 Jun 2025 10:21:33 +0800 Subject: [PATCH] fix import path --- client/src/Routes/index.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/src/Routes/index.jsx b/client/src/Routes/index.jsx index 3f815a665..85b8da82c 100644 --- a/client/src/Routes/index.jsx +++ b/client/src/Routes/index.jsx @@ -3,7 +3,7 @@ import HomeLayout from "../Components/Layouts/HomeLayout"; import NotFound from "../Pages/NotFound"; // Auth -import AuthLogin from "../Pages/Auth/Login/Login"; +import AuthLogin from "../Pages/Auth/Login"; import AuthRegister from "../Pages/Auth/Register/Register"; import AuthForgotPassword from "../Pages/Auth/ForgotPassword"; import AuthCheckEmail from "../Pages/Auth/CheckEmail"; @@ -48,7 +48,6 @@ import Settings from "../Pages/Settings"; import Maintenance from "../Pages/Maintenance"; import ProtectedRoute from "../Components/ProtectedRoute"; -import ProtectedDistributedUptimeRoute from "../Components/ProtectedDistributedUptimeRoute"; import CreateNewMaintenanceWindow from "../Pages/Maintenance/CreateMaintenance"; import withAdminCheck from "../Components/HOC/withAdminCheck"; import BulkImport from "../Pages/Uptime/BulkImport";