From a36fff1e9d39a56a383b9be595377a80b720ddac Mon Sep 17 00:00:00 2001 From: Dave Smith-Hayes Date: Sun, 3 Mar 2024 22:18:58 -0500 Subject: [PATCH] Why wont this work? --- 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 53f9fd8..ea8f232 100644 --- a/app/src/index.tsx +++ b/app/src/index.tsx @@ -12,6 +12,6 @@ app.get('/', async (c) => { }); // Handlers -app.route('/user', LoginHandler); +app.route('/*', LoginHandler); export default app;