summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/[lng]/partners/(partners)/registration-status/page.tsx24
1 files changed, 0 insertions, 24 deletions
diff --git a/app/[lng]/partners/(partners)/registration-status/page.tsx b/app/[lng]/partners/(partners)/registration-status/page.tsx
deleted file mode 100644
index 21bcea59..00000000
--- a/app/[lng]/partners/(partners)/registration-status/page.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import * as React from "react"
-import { Suspense } from "react"
-
-import { Skeleton } from "@/components/ui/skeleton"
-import { Shell } from "@/components/shell"
-import { VendorRegistrationStatusView } from "@/lib/vendor-registration-status/vendor-registration-status-view"
-
-export default async function VendorRegistrationStatusPage() {
- return (
- <Shell className="gap-4">
- <Suspense
- fallback={
- <div className="space-y-4">
- <Skeleton className="h-10 w-full" />
- <Skeleton className="h-64 w-full" />
- <Skeleton className="h-32 w-full" />
- </div>
- }
- >
- <VendorRegistrationStatusView />
- </Suspense>
- </Shell>
- )
-}