Update page.tsx

This commit is contained in:
Marvin
2025-09-13 16:42:37 +02:00
committed by GitHub
parent 95d74825ee
commit 806a49b822

View File

@@ -1,7 +1,7 @@
import { redirect } from "next/navigation";
export default async function ClientPage(props: {
params: Promise<{ orgId: string; clientId: number }>;
params: Promise<{ orgId: string; clientId: number | string }>;
}) {
const params = await props.params;
redirect(`/${params.orgId}/settings/clients/${params.clientId}/general`);