From 2ff32094ce74bf20b18bd440fbbaab6f80063e5e Mon Sep 17 00:00:00 2001 From: rstubryan Date: Sun, 8 Mar 2026 22:13:26 +0700 Subject: [PATCH] chore(FE): Fix inconsistent indentation in ChickLogsView and RecordingForm --- .../chickin/form/tabs/ChickLogsView.tsx | 1 - .../recording/form/RecordingForm.tsx | 48 +++++++++---------- 2 files changed, 24 insertions(+), 25 deletions(-) diff --git a/src/components/pages/production/chickin/form/tabs/ChickLogsView.tsx b/src/components/pages/production/chickin/form/tabs/ChickLogsView.tsx index ba489b89..acb8c18b 100644 --- a/src/components/pages/production/chickin/form/tabs/ChickLogsView.tsx +++ b/src/components/pages/production/chickin/form/tabs/ChickLogsView.tsx @@ -200,7 +200,6 @@ const ChickinLogsView = ({ )} - ); }; diff --git a/src/components/pages/production/recording/form/RecordingForm.tsx b/src/components/pages/production/recording/form/RecordingForm.tsx index d5299c9d..af4ab78b 100644 --- a/src/components/pages/production/recording/form/RecordingForm.tsx +++ b/src/components/pages/production/recording/form/RecordingForm.tsx @@ -3008,18 +3008,18 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => { type='button' color='error' onClick={deleteRecordingClickHandler} - className='px-4' - > - - Delete - - - )} + className='px-4' + > + + Delete + + + )} {type === 'detail' && initialValues && isRecordingEditable(initialValues) && ( @@ -3028,18 +3028,18 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => { type='button' color='warning' href={`/production/recording/detail/edit/?recordingId=${initialValues.id}`} - className='px-4' - > - - Edit - - - )} + className='px-4' + > + + Edit + + + )} {/* Right side actions */}