Skip to content

Commit

Permalink
fix: remove route report bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ialexanderbrito committed Apr 5, 2022
1 parent fe22687 commit 0218cdc
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/routes/PrivateRoutes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { Routes, Route } from 'react-router-dom';
import { Home } from 'pages/Home';
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';

Expand All @@ -14,7 +13,6 @@ export function PrivateRoutes() {
<Route path="/profile" element={<Profile />} />
<Route path="/p/:id" element={<Schedule />} />
<Route path="/reset-password" element={<ResetPassword />} />
<Route path="/report-bug" element={<ReportBug />} />
<Route path="*" element={<NotFound />} />
</Routes>
);
Expand Down

0 comments on commit 0218cdc

Please sign in to comment.