Removed playground route

This commit is contained in:
Alex Holliday
2024-07-17 19:26:08 -07:00
parent 0560046686
commit 3576fcd740

View File

@@ -4,7 +4,6 @@ import NotFound from "./Pages/NotFound";
import Login from "./Pages/Auth/Login";
import Register from "./Pages/Auth/Register";
import HomeLayout from "./Layouts/HomeLayout";
import PlayGround from "./Pages/PlayGround/PlayGround";
import Account from "./Pages/Account";
import Monitors from "./Pages/Monitors";
import CreateMonitor from "./Pages/Monitors/CreateMonitor";
@@ -83,7 +82,6 @@ function App() {
<Route exact path="/register" element={<Register />} />
{/* <Route path="/toast" element={<ToastComponent />} /> */}
<Route path="*" element={<NotFound />} />
<Route path="/playground" element={<PlayGround />} />
<Route path="/forgot-password" element={<ForgotPassword />} />
<Route path="/check-email" element={<CheckEmail />} />
<Route path="/set-new-password/:token" element={<SetNewPassword />} />