diff --git a/src/components/pages/production/recording/form/RecordingForm.tsx b/src/components/pages/production/recording/form/RecordingForm.tsx index 9bf2bfbe..e065ec96 100644 --- a/src/components/pages/production/recording/form/RecordingForm.tsx +++ b/src/components/pages/production/recording/form/RecordingForm.tsx @@ -335,9 +335,11 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => { const productName = product.product.name; if ( - productName === 'Ayam Mati' || - productName === 'Ayam Culling' || - productName === 'Ayam Afkir' + productName.toLowerCase().includes('ayam') || + productName.toLowerCase().includes('chicken') || + productName.toLowerCase().includes('culling') || + productName.toLowerCase().includes('mati') || + productName.toLowerCase().includes('afkir') ) { options.push({ value: product.id,