From 0cd8840ac87cd627614738619f72b3beda97ce0e Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Sun, 3 Mar 2024 22:17:20 -0500 Subject: [PATCH] Add a route prefix to the route handler. --- app/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/index.tsx b/app/src/index.tsx index ea8f232..53f9fd8 100644 --- a/app/src/index.tsx +++ b/app/src/index.tsx @@ -12,6 +12,6 @@ app.get('/', async (c) => { }); // Handlers -app.route('/*', LoginHandler); +app.route('/user', LoginHandler); export default app;