diff --git a/components/expenses/PayoutMethodForm.js b/components/expenses/PayoutMethodForm.js index 309f86e7f5e..5d8fc28a6d3 100644 --- a/components/expenses/PayoutMethodForm.js +++ b/components/expenses/PayoutMethodForm.js @@ -62,7 +62,7 @@ export const validatePayoutMethod = payoutMethod => { } if (payoutMethod?.type !== PayoutMethodType.ACCOUNT_BALANCE) { - if (!payoutMethod.data?.currency) { + if (!payoutMethod?.data?.currency) { set(errors, 'data.currency', createError(ERROR.FORM_FIELD_REQUIRED)); } }