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

Fix: getCountry for not paired users #137

Merged
merged 2 commits into from
Jun 24, 2022

Conversation

Gamboster
Copy link
Collaborator

It also fixes the payment methods available in case of not getting country

return {};
}
PaymentMethodsAvailable.sepaBankTransfer.enabled = !!country.isEuCountry;
PaymentMethodsAvailable.sepaBankTransfer.enabled = countryData
? !!countryData.isEuCountry
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

instead of ternary could be -> !!countryData?.isEuCountry

@JohnathanWhite JohnathanWhite merged commit 4937c6d into bitpay:master Jun 24, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants