diff --git a/src/components/TradingWidget.tsx b/src/components/TradingWidget.tsx index eca4940a..ae124be6 100644 --- a/src/components/TradingWidget.tsx +++ b/src/components/TradingWidget.tsx @@ -252,11 +252,11 @@ export function TradingWidget({ tokenAddress }: { tokenAddress: Address }) { {/* Estimate */} {estimate != null && parsedAmount > BigInt(0) && (
- {tab === "buy" ? "Estimated cost" : "Estimated return"}:{" "} + {tab === "buy" ? "Max cost" : "Min return"}:{" "} - {formatUnits(estimate, 18)} {RESERVE_LABEL} + {formatUnits(applySlippage(estimate, tab === "buy"), 18)} {RESERVE_LABEL} - (3% slippage tolerance) + (incl. 3% slippage)
)}