Refactor compliance page access page

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-01-28 21:45:43 +04:00
parent 42557e1640
commit 7e92d5a165
18 changed files with 1341 additions and 1210 deletions

View File

@@ -7,7 +7,6 @@ import {
import { loadQuery } from "react-relay";
import type { TrustCenterGraphQuery } from "#/__generated__/core/TrustCenterGraphQuery.graphql";
import { LinkCardSkeleton } from "#/components/skeletons/LinkCardSkeleton";
import { PageSkeleton } from "#/components/skeletons/PageSkeleton";
import { coreEnvironment } from "#/environments";
@@ -28,15 +27,5 @@ export const trustCenterRoutes = [
Component: withQueryRef(
lazy(() => import("#/pages/organizations/trustCenter/TrustCenterPage")),
),
children: [
{
path: "access",
Fallback: LinkCardSkeleton,
Component: lazy(
() =>
import("#/pages/organizations/trustCenter/TrustCenterAccessTab/TrustCenterAccessTab"),
),
},
],
},
] satisfies AppRoute[];