diff --git a/packages/mobile/locales/en-US/fiatExchangeFlow.json b/packages/mobile/locales/en-US/fiatExchangeFlow.json index 5ca9fde37b8..758841016ec 100644 --- a/packages/mobile/locales/en-US/fiatExchangeFlow.json +++ b/packages/mobile/locales/en-US/fiatExchangeFlow.json @@ -60,9 +60,9 @@ "celoDeposit": "CELO Purchase", "cUsdDeposit": "cUSD Purchase", "cicoSuccess": { - "title": "Transaction started!", - "bodyWithProvider": "{{provider}} is processing your order. You should receive your funds within 1-2 days.", - "bodyWithoutProvider": "The service provider is processing your order. You should receive your funds within 1-2 days." + "title": "Order submitted!", + "bodyWithProvider": "{{provider}} is processing your order. You should receive your funds within a couple of days.", + "bodyWithoutProvider": "The service provider is processing your order. You should receive your funds within a couple of days." }, "restrictedRegion": "Limited support in region" } diff --git a/packages/mobile/src/fiatExchanges/CashInSuccess.tsx b/packages/mobile/src/fiatExchanges/CashInSuccess.tsx index fb114ad5025..6a4b192b248 100644 --- a/packages/mobile/src/fiatExchanges/CashInSuccess.tsx +++ b/packages/mobile/src/fiatExchanges/CashInSuccess.tsx @@ -21,25 +21,23 @@ function CashInSuccessScreen({ route }: Props) { return ( - - - {t('cicoSuccess.title')} - + + {t('cicoSuccess.title')} {provider ? t('cicoSuccess.bodyWithProvider', { provider }) : t('cicoSuccess.bodyWithoutProvider')} - -