Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions src/components/Global/ExchangeRateWidget/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,7 @@ const ExchangeRateWidget: FC<IExchangeRateWidgetProps> = ({ 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 (
Expand Down
Loading