fixing fee/lp amount display bug

This commit is contained in:
2025-11-27 13:02:42 -04:00
parent e36f6011c9
commit ff9a718522

View File

@@ -643,8 +643,8 @@ export function useSwapMintAmounts(
setSwapMintAmounts({
amountInUsed: result[0],
fee: result[1],
lpMinted: result[2],
fee: result[2],
lpMinted: result[1],
calculatedSlippage,
});
} catch (err) {