diff --git a/README.md b/README.md
index 5c1c231b..94554598 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@
Basic usage
- How to manually test the app
+ How to manually test the app
Contributors
- Customizing Styles with Tailwind.css
diff --git a/src/app/translations/en.json b/src/app/translations/en.json
index df4e8b9d..671e4544 100644
--- a/src/app/translations/en.json
+++ b/src/app/translations/en.json
@@ -34,6 +34,7 @@
"insufficientTokenAmount": "Insufficient {{token}} amount",
"insufficientTokenLiquidity": "Insufficient {{token}} liquidity in pool",
"minimumTokenAmountExceeded": "Minimum asset token amount exceeded",
+ "toLowForSwap":"{{token}} amount too low - slippage impact",
"enterAmount": "Enter amount",
"selectToken": "Select token",
"swap": "Swap",
diff --git a/src/components/organism/SwapTokens/index.tsx b/src/components/organism/SwapTokens/index.tsx
index 15a24d32..4f875444 100644
--- a/src/components/organism/SwapTokens/index.tsx
+++ b/src/components/organism/SwapTokens/index.tsx
@@ -443,6 +443,12 @@ const SwapTokens = () => {
disabled: true,
};
}
+ if (Number(tokenBValueForSwap.tokenValue) < 1 && selectedTokens.tokenB.decimals === "0") {
+ return {
+ label: t("button.toLowForSwap", { token: selectedTokens.tokenB.tokenSymbol }),
+ disabled: true,
+ };
+ }
if (
selectedTokens.tokenA.tokenSymbol !== nativeTokenSymbol &&
tokenANumber >