Skip to content
This repository was archived by the owner on Jan 22, 2026. It is now read-only.

Commit bf9ea23

Browse files
author
plondon
committed
fix(Coinify): only check nabuStateCode if countryCode is US
1 parent b0208a8 commit bf9ea23

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • packages/blockchain-wallet-v4-frontend/src/data/components/coinify

packages/blockchain-wallet-v4-frontend/src/data/components/coinify/sagas.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export default ({ api, coreSagas, networks }) => {
7575
selectors.modules.profile.getUserCountryCode
7676
)).getOrFail('no country code')
7777
const availableCountryStates = yield call(api.getCoinifyStates)
78-
if (nabuStateCode) {
78+
if (nabuStateCode && nabuCountryCode === 'US') {
7979
const supportedState = path(
8080
['US', 'states', nabuStateCode, 'supported'],
8181
availableCountryStates

0 commit comments

Comments
 (0)