Files
triqura-ecd/app/epd/patients/[id]/intake/page.tsx
2025-11-23 10:13:00 +01:00

16 lines
325 B
TypeScript

import { redirect } from 'next/navigation';
/**
* Intake Redirect
* Redirects from /epd/patients/[id]/intake to /epd/patients/[id]/intakes
*/
export default async function IntakeRedirect({
params,
}: {
params: Promise<{ id: string }>;
}) {
const { id } = await params;
redirect(`/epd/patients/${id}/intakes`);
}