From 8e6dd474ecc260a4197ceb17ce02c9dd18a6ed7c Mon Sep 17 00:00:00 2001 From: "CANCERYS\\kw093" Date: Tue, 5 May 2026 01:08:09 +0800 Subject: [PATCH] dodetail fix --- src/components/DoDetail/DoDetail.tsx | 2 ++ 1 file changed, 2 insertions(+) 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();