/* eslint-disable */ // @ts-nocheck import { lazy } from "react"; import type { Path } from "react-router-dom"; import { generateEncodedPath } from "../../utils/generateEncodedPath"; import type { AppRouteObject } from "../../routes"; export type AddOrganizationParams = { realm: string }; const NewOrganization = lazy(() => import("../NewOrganization")); export const AddOrganizationRoute: AppRouteObject = { path: "/:realm/organizations/new", element: , handle: { access: "manage-organizations", breadcrumb: (t) => t("createOrganization"), }, }; export const toAddOrganization = ( params: AddOrganizationParams, ): Partial => ({ pathname: generateEncodedPath(AddOrganizationRoute.path, params), });