diff --git a/components/BuyCrypto/Transfi/TransfiAmount.tsx b/components/BuyCrypto/Transfi/TransfiAmount.tsx index 4c298f9d..27715865 100644 --- a/components/BuyCrypto/Transfi/TransfiAmount.tsx +++ b/components/BuyCrypto/Transfi/TransfiAmount.tsx @@ -163,10 +163,6 @@ export const TransfiAmount = () => { !!activePaymentCode && !!currency; const continueDisabled = !isValid || creatingOrder; - const usdEquivalent = - Number.isFinite(amountNum) && amountNum > 0 - ? new Intl.NumberFormat(undefined, { maximumFractionDigits: 2 }).format(amountNum) - : '0'; // Reported once per amount that lands out of range, not per keystroke: the // limits being wrong for a market is the signal, not how fast someone types. @@ -258,7 +254,6 @@ export const TransfiAmount = () => { className="p-0 text-3xl font-semibold text-white web:outline-none" style={{ fontFamily: 'MonaSans_600SemiBold' }} /> - ${usdEquivalent} {/* Our own USDC mark, not TransFi's: theirs badges the delivery @@ -365,7 +360,9 @@ export const TransfiAmount = () => { disabled={continueDisabled} > {creatingOrder ? 'Creating order…' diff --git a/components/BuyCrypto/Transfi/TransfiPaymentHandoff.tsx b/components/BuyCrypto/Transfi/TransfiPaymentHandoff.tsx index c95e9300..ce14ddef 100644 --- a/components/BuyCrypto/Transfi/TransfiPaymentHandoff.tsx +++ b/components/BuyCrypto/Transfi/TransfiPaymentHandoff.tsx @@ -72,7 +72,7 @@ export const TransfiPaymentHandoff = ({