summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
author0-Zz-ang <s1998319@gmail.com>2025-08-09 01:09:20 +0900
committer0-Zz-ang <s1998319@gmail.com>2025-08-09 01:09:20 +0900
commitf30678aa2956620177e61cbcc0fb57e9ce6872f1 (patch)
treeac0092fb7ab8ee2011d9f75c925e640c832f5425 /app
parent3230371034bb9a28d6be464b834c5a91ee598022 (diff)
(박서영)docu-list-rule페이지 내 프로젝트 해양만조회가능하도록 수정
Diffstat (limited to 'app')
-rw-r--r--app/[lng]/evcp/(evcp)/docu-list-rule/number-types/page.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/docu-list-rule/number-types/page.tsx b/app/[lng]/evcp/(evcp)/docu-list-rule/number-types/page.tsx
index 6fa010c7..58af176f 100644
--- a/app/[lng]/evcp/(evcp)/docu-list-rule/number-types/page.tsx
+++ b/app/[lng]/evcp/(evcp)/docu-list-rule/number-types/page.tsx
@@ -3,7 +3,7 @@ import { Shell } from "@/components/shell";
import { Skeleton } from "@/components/ui/skeleton";
import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton";
import { NumberTypesTable } from "@/lib/docu-list-rule/number-types/table/number-types-table";
-import { getNumberTypes } from "@/lib/docu-list-rule/number-types/service";
+import { getNumberTypesWithConfigs } from "@/lib/docu-list-rule/number-types/service";
import { InformationButton } from "@/components/information/information-button";
import { searchParamsNumberTypesCache } from "@/lib/docu-list-rule/number-types/validation";
@@ -15,7 +15,7 @@ export default async function IndexPage(props: IndexPageProps) {
const searchParams = await props.searchParams;
const promises = Promise.all([
- getNumberTypes(
+ getNumberTypesWithConfigs(
searchParamsNumberTypesCache.parse(searchParams)
),
]);