From 17a224b64702fefd94218f278db41467b914de75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Ch=C3=A1vez?= Date: Tue, 4 Oct 2022 15:54:48 -0500 Subject: [PATCH] get values from reimbursementAccountDraftValues --- src/libs/ReimbursementAccountUtils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libs/ReimbursementAccountUtils.js b/src/libs/ReimbursementAccountUtils.js index 4074f1e8ab6c..2e6570880233 100644 --- a/src/libs/ReimbursementAccountUtils.js +++ b/src/libs/ReimbursementAccountUtils.js @@ -35,6 +35,7 @@ function getDefaultStateForField(props, fieldName, defaultValue = '') { function getBankAccountFields(props, fieldNames) { return { ..._.pick(lodashGet(props, 'reimbursementAccount.achData'), ...fieldNames), + ..._.pick(lodashGet(props, 'reimbursementAccountDraftValues'), ...fieldNames), ..._.pick(props.reimbursementAccountDraft, ...fieldNames), }; }