fix error files caused during vercel build step

This commit is contained in:
RcleydsonR
2022-12-16 17:49:43 -03:00
parent c4b74309cc
commit 150a325bdc
4 changed files with 9 additions and 11 deletions

View File

@@ -32,6 +32,10 @@ const confirmBuyClick = async ({ selectedDeposit, tokenValue }: any) => {
const depositId = selectedDeposit.depositID;
pixTarget.value = selectedDeposit.pixKey;
tokenAmount.value = tokenValue;
// depositId is BigNumber type object
tokenAmount.value = tokenValue;
pixTarget.value = String(depositDetail?.pixTarget);
// Makes lock with deposit ID and the Amount
if (depositDetail) {