reset url fix

This commit is contained in:
yaschalew
2026-07-12 14:59:48 +03:00
parent 6a54757317
commit 3159722ad3

View File

@@ -126,6 +126,7 @@ import WarehouseRulesPage from "./pages/warehouses/WarehouseRulesPage";
import { HealthCheck } from "./features/health/HealthCheck";
import FaydaCallbackPage from "./pages/FaydaCallbackPage";
import { UserManagementRoutes } from "./user-management/route";
import SetPassword from "./shared/components/SetPassword";
const buildSidebarSections = (demoItems: SidebarItem[]): SidebarSection[] => [
{
@@ -655,6 +656,10 @@ const App = () => {
<Routes>
<Route path="/auth" element={<LoginPage />} />
{/* <Route path="/um/*" element={<UserManagementHostPage />} /> */}
<Route
path="um/set-password"
element={<SetPassword />}
/>
<Route path="/callback" element={<FaydaCallbackPage />} />
<Route path="*" element={<Navigate to="/auth" replace />} />
</Routes>