|
@@ -199,8 +199,10 @@ const Deposit = () => {
|
|
|
});
|
|
|
if (!confirmRes) return;
|
|
|
}
|
|
|
+
|
|
|
if (new BigNumber(amount).isLessThan(shopType.condition.min)) {
|
|
|
- return Toast.show({ content: t("form.amount") });
|
|
|
+ let msg = t("form.amountMinReg", { amount: shopType.condition.min });
|
|
|
+ return Toast.show({ content: msg });
|
|
|
}
|
|
|
if (!amount) {
|
|
|
return Toast.show({ content: t("form.amount") });
|