diff --git a/src/apps/copilots/src/pages/copilot-request-form/index.tsx b/src/apps/copilots/src/pages/copilot-request-form/index.tsx index 8fb9fcbb3..bbef38127 100644 --- a/src/apps/copilots/src/pages/copilot-request-form/index.tsx +++ b/src/apps/copilots/src/pages/copilot-request-form/index.tsx @@ -277,7 +277,7 @@ const CopilotRequestForm: FC<{}> = () => { message: 'Field cannot be left empty', }, { - condition: formValues.otherPaymentType.trim().length > 8, + condition: formValues.otherPaymentType && formValues.otherPaymentType.trim().length > 8, key: 'otherPaymentType', message: 'Field only allows 8 characters', },