diff --git a/src/components/pages/production/recording/form/RecordingForm.tsx b/src/components/pages/production/recording/form/RecordingForm.tsx index 22cbdb1b..7f11709c 100644 --- a/src/components/pages/production/recording/form/RecordingForm.tsx +++ b/src/components/pages/production/recording/form/RecordingForm.tsx @@ -463,13 +463,16 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => { }, [selectedKandang]); // ===== TRANSITION RESTRICTION LOGIC ===== - const isTransitionPeriod = useMemo(() => { - return ( - initialValues?.is_transition ?? - projectFlockKandangLookup?.is_transition ?? - false - ); - }, [initialValues, projectFlockKandangLookup]); + // const isTransitionPeriod = useMemo(() => { + // return ( + // initialValues?.is_transition ?? + // projectFlockKandangLookup?.is_transition ?? + // false + // ); + // }, [initialValues, projectFlockKandangLookup]); + + // set to false by request: 30 May 2026, 09:11 + const isTransitionPeriod = false; const recordingRestriction = useMemo(() => { let isLaying: boolean;