diff options
Diffstat (limited to 'app')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/docu-list-rule/number-types/page.tsx | 4 |
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) ), ]); |
