-
Notifications
You must be signed in to change notification settings - Fork 3.9k
feat: Add 6th step to USD reimbursement account flow #66118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
srikarparsi
merged 16 commits into
Expensify:main
from
callstack-internal:feat/65911-usd-6th-step
Jul 28, 2025
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
0970c50
Merge branch 'main' of https://github.com/Expensify/App into feat/640…
MrMuzyk f48484e
Merge branch 'main' of https://github.com/Expensify/App into feat/659…
MrMuzyk 98f9263
feat: Add 6th step to USD reimbursement account flow
MrMuzyk 1c16232
Merge branch 'main' of https://github.com/Expensify/App into feat/659…
MrMuzyk 781968b
fix: handling edge cases
MrMuzyk 7395e23
Merge branch 'main' of https://github.com/Expensify/App into feat/659…
MrMuzyk 328b1ec
fix: more edgecases and no continue on 1st step
MrMuzyk 87ae559
Merge branch 'main' of https://github.com/Expensify/App into feat/659…
MrMuzyk 7c78a68
fix: reusable component and all edge cases
MrMuzyk 024a7f2
fix: work leftovers
MrMuzyk 6294665
fix: lint
MrMuzyk 0f19c22
Merge branch 'main' of https://github.com/Expensify/App into feat/659…
MrMuzyk 3c4f325
fix: not validated account edgecase
MrMuzyk bf65710
fix: cr fixes
MrMuzyk 6f4822c
Merge branch 'main' of https://github.com/Expensify/App into feat/659…
MrMuzyk 4bcced4
fix: revert some changes to substep and setup type
MrMuzyk File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| import type {ACHContractStepProps} from '@src/types/form/ReimbursementAccountForm'; | ||
|
|
||
| type AcceptACHContractForBankAccount = ACHContractStepProps & {bankAccountID: number; policyID: string}; | ||
| type AcceptACHContractForBankAccount = ACHContractStepProps & {bankAccountID: number; policyID: string | undefined}; | ||
|
|
||
| export default AcceptACHContractForBankAccount; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| import React from 'react'; | ||
| import CountryFullStep from '@components/SubStepForms/CountryFullStep'; | ||
|
|
||
| type CountryProps = { | ||
| /** Handles back button press */ | ||
| onBackButtonPress: () => void; | ||
|
|
||
| /** Handles submit button press */ | ||
| onSubmit: () => void; | ||
|
|
||
| /** Array of step names */ | ||
| stepNames: readonly string[]; | ||
|
|
||
| /** ID of current policy */ | ||
| policyID: string | undefined; | ||
| }; | ||
|
|
||
| function Country({onBackButtonPress, onSubmit, stepNames, policyID}: CountryProps) { | ||
| return ( | ||
| <CountryFullStep | ||
| onBackButtonPress={onBackButtonPress} | ||
| onSubmit={onSubmit} | ||
| stepNames={stepNames} | ||
| policyID={policyID} | ||
| /> | ||
| ); | ||
| } | ||
|
|
||
| Country.displayName = 'Country'; | ||
|
|
||
| export default Country; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.