remove console log

This commit is contained in:
fmtabbara
2021-08-04 09:26:22 +01:00
parent f96d768341
commit 3a9531b586
+1 -1
View File
@@ -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)
}