diff --git a/wallet-web/components/bond/utils.ts b/wallet-web/components/bond/utils.ts index 8ae2cbb45a..3d3c337582 100644 --- a/wallet-web/components/bond/utils.ts +++ b/wallet-web/components/bond/utils.ts @@ -15,7 +15,7 @@ export const validateAmount = (rawValue: string, minimum: string): boolean => { // this conversion seems really iffy but I'm not sure how to better approach it let nativeValueString = printableBalanceToNative(rawValue) let nativeValue = parseInt(nativeValueString) - console.log(nativeValue, minimum) + return nativeValue >= parseInt(minimum) }