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 7f7d3dfae8
commit 1a281dc429
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)
}