diff --git a/src/components/berths/berth-detail-header.tsx b/src/components/berths/berth-detail-header.tsx index 1d857ea..cd635b3 100644 --- a/src/components/berths/berth-detail-header.tsx +++ b/src/components/berths/berth-detail-header.tsx @@ -24,6 +24,7 @@ import { SelectValue, } from '@/components/ui/select'; import { Textarea } from '@/components/ui/textarea'; +import { DetailHeaderStrip } from '@/components/shared/detail-header-strip'; import { PermissionGate } from '@/components/shared/permission-gate'; import { BerthForm } from './berth-form'; import { apiFetch } from '@/lib/api/client'; @@ -94,7 +95,7 @@ function StatusChangeDialog({ formState: { isSubmitting }, } = useForm({ resolver: zodResolver(updateBerthStatusSchema), - defaultValues: { status: currentStatus as typeof BERTH_STATUSES[number], reason: '' }, + defaultValues: { status: currentStatus as (typeof BERTH_STATUSES)[number], reason: '' }, }); const status = watch('status'); @@ -127,7 +128,7 @@ function StatusChangeDialog({