From cd22caf86eb4181cca1b001d8aaa7c97146cb789 Mon Sep 17 00:00:00 2001 From: ChefEric <173023571+chef-eric@users.noreply.github.com> Date: Thu, 13 Feb 2025 18:38:47 +0800 Subject: [PATCH] fix: minOut too high to fail --- apps/ton/src/views/TONSwap/SwapForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/ton/src/views/TONSwap/SwapForm.tsx b/apps/ton/src/views/TONSwap/SwapForm.tsx index 3cbcde1030a59..fe841a1fe529c 100644 --- a/apps/ton/src/views/TONSwap/SwapForm.tsx +++ b/apps/ton/src/views/TONSwap/SwapForm.tsx @@ -92,7 +92,7 @@ export const SwapForm = () => { return } await swap({ - minOut: formattedAmounts[Field.OUTPUT] ?? '0.01', + minOut: '0.01', amount0: formattedAmounts[Field.INPUT] ?? '0', token0: inputCurrency, token1: outputCurrency,