Skip to content

Commit

Permalink
Merge pull request #3776 from Expensify/maria-requestor-state-fix
Browse files Browse the repository at this point in the history
Set default value for requestorAddressState in RequestorStep form
  • Loading branch information
Jag96 authored Jun 30, 2021
2 parents a9db527 + f31ae48 commit 1ae1d6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/ReimbursementAccount/RequestorStep.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class RequestorStep extends React.Component {
lastName: lodashGet(props, ['achData', 'lastName'], ''),
requestorAddressStreet: lodashGet(props, ['achData', 'requestorAddressStreet'], ''),
requestorAddressCity: lodashGet(props, ['achData', 'requestorAddressCity'], ''),
requestorAddressState: lodashGet(props, ['achData', 'requestorAddressState'], ''),
requestorAddressState: lodashGet(props, ['achData', 'requestorAddressState']) || 'AK',
requestorAddressZipCode: lodashGet(props, ['achData', 'requestorAddressZipCode'], ''),
dob: lodashGet(props, ['achData', 'dob'], ''),
ssnLast4: lodashGet(props, ['achData', 'ssnLast4'], ''),
Expand Down

0 comments on commit 1ae1d6e

Please sign in to comment.