aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/App.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/App.tsx')
-rw-r--r--src/client/App.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/App.tsx b/src/client/App.tsx
index 098ded7..5e749d2 100644
--- a/src/client/App.tsx
+++ b/src/client/App.tsx
@@ -1,6 +1,6 @@
import { Route, Switch } from "wouter";
import { ProtectedRoute } from "./components";
-import { HomePage, LoginPage, NotFoundPage, RegisterPage } from "./pages";
+import { HomePage, LoginPage, NotFoundPage } from "./pages";
export function App() {
return (
@@ -11,7 +11,6 @@ export function App() {
</ProtectedRoute>
</Route>
<Route path="/login" component={LoginPage} />
- <Route path="/register" component={RegisterPage} />
<Route component={NotFoundPage} />
</Switch>
);