diff --git a/src/components/pages/production/recording/form/RecordingForm.tsx b/src/components/pages/production/recording/form/RecordingForm.tsx index 0d4a761b..9735a9b4 100644 --- a/src/components/pages/production/recording/form/RecordingForm.tsx +++ b/src/components/pages/production/recording/form/RecordingForm.tsx @@ -1524,6 +1524,13 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => { ); } + if (showTotalPrice) { + return ( + + (total harga: {totalPrice}) + + ); + } return null; }