diff --git a/src/components/Global/ExchangeRateWidget/index.tsx b/src/components/Global/ExchangeRateWidget/index.tsx index 37d907c6b..1115d0061 100644 --- a/src/components/Global/ExchangeRateWidget/index.tsx +++ b/src/components/Global/ExchangeRateWidget/index.tsx @@ -91,9 +91,7 @@ const ExchangeRateWidget: FC = ({ ctaLabel, ctaIcon, c // Determine delivery time text based on destination currency const deliveryTimeText = useMemo(() => { - return destinationCurrency === 'USD' - ? 'Should arrive in hours. Estimate.' - : 'Should arrive in minutes. Estimate.' + return destinationCurrency === 'USD' ? 'Should arrive in hours.' : 'Should arrive in minutes.' }, [destinationCurrency]) return (