diff --git a/src/routes/PrivateRoutes.tsx b/src/routes/PrivateRoutes.tsx index b06ea27..f22b213 100644 --- a/src/routes/PrivateRoutes.tsx +++ b/src/routes/PrivateRoutes.tsx @@ -8,7 +8,6 @@ import { MyTicket } from 'pages/MyTicket'; import { NotFound } from 'pages/NotFound'; import { Profile } from 'pages/Profile'; import { ReportBug } from 'pages/ReportBug'; -import { ResetPassword } from 'pages/ResetPassword'; import { Schedule } from 'pages/Schedule'; import { Tickets } from 'pages/Tickets'; import { Validate } from 'pages/Validate'; @@ -21,7 +20,6 @@ export function PrivateRoutes() { return ( } /> - } /> } /> } /> } /> diff --git a/src/routes/PublicRoutes.tsx b/src/routes/PublicRoutes.tsx index 1c5d752..749e90d 100644 --- a/src/routes/PublicRoutes.tsx +++ b/src/routes/PublicRoutes.tsx @@ -4,6 +4,7 @@ import { ForgetPassword } from 'pages/ForgetPassword'; import { Login } from 'pages/Login'; import { NotFound } from 'pages/NotFound'; import { Register } from 'pages/Register'; +import { ResetPassword } from 'pages/ResetPassword'; export function PublicRoutes() { return ( @@ -11,6 +12,7 @@ export function PublicRoutes() { } /> } /> } /> + } /> } /> );