From 5c0173a7fc288a874d2b7f50ae35e6a9ef8c268f Mon Sep 17 00:00:00 2001 From: neil-marcellini Date: Wed, 27 Jul 2022 12:06:23 -0700 Subject: [PATCH] Remove incorrect 'this.' in function call --- src/libs/actions/ReimbursementAccount/errors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/actions/ReimbursementAccount/errors.js b/src/libs/actions/ReimbursementAccount/errors.js index d720eaf13874..9c4b53f5ffef 100644 --- a/src/libs/actions/ReimbursementAccount/errors.js +++ b/src/libs/actions/ReimbursementAccount/errors.js @@ -36,7 +36,7 @@ function setBankAccountFormValidationErrors(errors) { * Clear validation messages from reimbursement account */ function resetReimbursementAccount() { - this.setBankAccountFormValidationErrors({}); + setBankAccountFormValidationErrors({}); Onyx.merge(ONYXKEYS.REIMBURSEMENT_ACCOUNT, {successRoute: null}); }