From 5b979c888289d7ea872270b2c294404e92b8acfd Mon Sep 17 00:00:00 2001 From: Maieul BOYER Date: Fri, 19 Dec 2025 14:42:54 +0100 Subject: [PATCH] chore(cleanup): made the chat page not bypassing the auth check anymore --- frontend/src/pages/chat/chat.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/chat/chat.ts b/frontend/src/pages/chat/chat.ts index 88e11f7..868d149 100644 --- a/frontend/src/pages/chat/chat.ts +++ b/frontend/src/pages/chat/chat.ts @@ -587,4 +587,4 @@ function handleChat(_url: string, _args: RouteHandlerParams): RouteHandlerReturn } }; -addRoute('/chat', handleChat, { bypass_auth: true }); +addRoute('/chat', handleChat);