From de5c43745caf77ef4a0494ba4fe14dd6a9e07a88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9F=D0=B5=D1=80=D0=B2=D0=BE=D0=B2=20=D0=90=D1=80=D1=82?= =?UTF-8?q?=D0=B5=D0=BC?= Date: Mon, 6 Apr 2026 02:32:43 +0300 Subject: [PATCH] Remove HashRouter wrapper from App component to simplify routing --- client/src/main.tsx | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/client/src/main.tsx b/client/src/main.tsx index b073053..d073959 100644 --- a/client/src/main.tsx +++ b/client/src/main.tsx @@ -1,6 +1,5 @@ import { StrictMode } from 'react'; import { createRoot } from 'react-dom/client'; -import { HashRouter } from 'react-router-dom'; import './index.css'; import App from './App'; import { initKeycloak } from './auth/keycloak'; @@ -10,9 +9,7 @@ async function bootstrap() { createRoot(document.getElementById('root')!).render( - - - + , ); }