summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-08-19 09:23:47 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-08-19 09:23:47 +0000
commit8077419e40368dc703f94d558fc746b73fbc6702 (patch)
tree333bdfb3b0d84336f1bf7d4f0f1bbced6bec2d4c /app
parentaa71f75ace013b2fe982e5a104e61440458e0fd2 (diff)
(최겸) 구매 PQ 비밀유지계약서 별첨 첨부파일 추가, 정규업체등록관리 개발
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>
- )
-}