diff --git a/src/pages/ReimbursementAccount/ReimbursementAccountPage.tsx b/src/pages/ReimbursementAccount/ReimbursementAccountPage.tsx index 4631a32c1758..ca846c553257 100644 --- a/src/pages/ReimbursementAccount/ReimbursementAccountPage.tsx +++ b/src/pages/ReimbursementAccount/ReimbursementAccountPage.tsx @@ -83,11 +83,11 @@ function ReimbursementAccountPage({route, policy, isLoadingPolicy, navigation}: const prevReimbursementAccount = usePrevious(reimbursementAccount); const prevIsOffline = usePrevious(isOffline); const policyCurrency = policy?.outputCurrency ?? ''; + const isNonUSDWorkspace = policyCurrency !== CONST.CURRENCY.USD; const hasUnsupportedCurrency = - isComingFromExpensifyCard && isBetaEnabled(CONST.BETAS.EXPENSIFY_CARD_EU_UK) + isComingFromExpensifyCard && isBetaEnabled(CONST.BETAS.EXPENSIFY_CARD_EU_UK) && isNonUSDWorkspace ? !isCurrencySupportedForECards(policyCurrency) : !isCurrencySupportedForGlobalReimbursement(policyCurrency as CurrencyType, isBetaEnabled(CONST.BETAS.GLOBAL_REIMBURSEMENTS_ON_ND)); - const isNonUSDWorkspace = policyCurrency !== CONST.CURRENCY.USD; const nonUSDCountryDraftValue = reimbursementAccountDraft?.country ?? ''; let workspaceRoute = ''; const isFocused = useIsFocused();