diff --git a/src/components/DoDetail/DoDetail.tsx b/src/components/DoDetail/DoDetail.tsx index 7eec514..0801d81 100644 --- a/src/components/DoDetail/DoDetail.tsx +++ b/src/components/DoDetail/DoDetail.tsx @@ -23,11 +23,13 @@ import { SessionWithTokens } from "@/config/authConfig"; // Import the correct type Props = { id?: number; defaultValues: Partial | undefined; + workbenchRelease?: boolean; } const DoDetail: React.FC = ({ defaultValues, id, + workbenchRelease = true, }) => { const { t } = useTranslation("do") const router = useRouter();