imported missing routes during merged

This commit is contained in:
pramod mahajan 2025-09-10 19:03:29 +05:30
parent f20c3a64f6
commit b1a2250c48

View File

@ -46,6 +46,9 @@ import MainResetPasswordPage from "../pages/authentication/MainResetPasswordPage
import TenantPage from "../pages/Tenant/TenantPage";
import { Navigate } from "react-router-dom";
import RootRedirect from "./RootRedirect";
import CreateTenant from "../pages/Tenant/CreateTenant";
import SuperTenantDetails from "../pages/Tenant/SuperTenantDetails";
import SelfTenantDetails from "../pages/Tenant/SelfTenantDetails";
const router = createBrowserRouter(
[
{
@ -87,6 +90,9 @@ const router = createBrowserRouter(
{ path: "/expenses", element: <ExpensePage /> },
{ path: "/masters", element: <MasterPage /> },
{ path: "/tenants", element: <TenantPage /> },
{ path: "/tenants/new-tenant", element: <CreateTenant /> },
{ path: "/tenant/:tenantId", element: <SuperTenantDetails /> },
{ path: "/tenant/self", element: <SelfTenantDetails /> },
{ path: "/help/support", element: <Support /> },
{ path: "/help/docs", element: <Documentation /> },
{ path: "/help/connect", element: <Connect /> },