add label when don't havee sufficient ammount token liquidity

This commit is contained in:
RcleydsonR
2022-11-25 19:17:38 -03:00
parent cd588622ea
commit 6a7426130c
2 changed files with 18 additions and 8 deletions

View File

@@ -128,7 +128,7 @@ const formatEther = (balance: string) => {
return formatted;
};
const verifyDepositAmmount = (ammountBigNumber: BigNumber) => {
const verifyDepositAmmount = (ammountBigNumber: BigNumber): string => {
return ethers.utils.formatEther(ammountBigNumber)
}