Skip to content
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

feat(withdraw): added logic to use properly selected withdrawal method #6432

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,10 @@ const EnterAmountContainer = (props: Props) => {
paymentAccount = undefined
}

if (props.beneficiary && paymentAccount && paymentAccount.id !== props.beneficiary?.id) {
paymentAccount = props.beneficiary
}

// Connecting the paymentAccount to the submit handler here because there's some nasty logic
// above here to determine the account being used to withdraw to. This should all ideally be refactored
const submitter = handleSubmit(paymentAccount)
Expand Down
Loading