Compare commits

..

1 commit

Author SHA1 Message Date
f562de5e9f
feat(blocked_slots): add blocked slots
Some checks failed
container-scan / Container Scan (pull_request) Failing after 1m23s
docker-build / docker (pull_request) Failing after 3m4s
tests / Tests (pull_request) Failing after 2m23s
2025-06-30 20:26:59 +02:00

View file

@ -1,10 +1,9 @@
import BlockedSlotForm from '@/components/forms/blocked-slot-form';
export default async function NewBlockedSlotPage({
export default function NewBlockedSlotPage({
params,
}: {
params: Promise<{ slotId?: string }>;
params: { slotId?: string };
}) {
const resolvedParams = await params;
return <BlockedSlotForm existingBlockedSlotId={resolvedParams.slotId} />;
return <BlockedSlotForm existingBlockedSlotId={params.slotId} />;
}