From d1952d420a8cf6ccc6a538e5115eb22543c9d16c Mon Sep 17 00:00:00 2001 From: Zishan Mohd Date: Tue, 16 Sep 2025 16:41:26 +0530 Subject: [PATCH] fix: Remove 'Estimate' text from exchange rate widget --- src/components/Global/ExchangeRateWidget/index.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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 (