Skip to content

Commit 407a13e

Browse files
committed
unnecessary skip of file uploads removed
1 parent cc49908 commit 407a13e

File tree

1 file changed

+1
-4
lines changed
  • src/pages/ReimbursementAccount/NonUSD/SignerInfo/subSteps

1 file changed

+1
-4
lines changed

src/pages/ReimbursementAccount/NonUSD/SignerInfo/subSteps/Address.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,9 @@ function Address({onNext, isEditing, onMove}: NameProps) {
6464
// owner is US based we need to gather last four digits of his SSN
6565
if (reimbursementAccountDraft?.[inputKeys.country] === CONST.COUNTRY.US) {
6666
onNext();
67-
// currency is set to GBP and owner is UK based, so we skip SSN and Documents step
68-
} else if (countryStepCountryValue === CONST.COUNTRY.GB && reimbursementAccountDraft?.[inputKeys.country] === CONST.COUNTRY.GB) {
69-
onMove(6, false);
7067
// owner is not US based so we skip SSN step
7168
} else {
72-
onMove(5, false);
69+
onMove(4, false);
7370
}
7471
};
7572

0 commit comments

Comments
 (0)