Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dovalid committed Jul 8, 2024
1 parent 4337533 commit bbadd4b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ const ControlledNumberInput = ({
if (newValue < props.min || newValue === "") {
const inputPrecision = getNumOfDecimals(newValue)
const minPrecision = getNumOfDecimals(props.min)
console.log("ret min prop")
return props.min.toFixed(Math.max(minPrecision, inputPrecision))
}
return newValue
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ const SelectLiquidityPoolStep = ({ onContinue }: { onContinue: () => void }) =>
}
onClick={onContinue}
mb={5}
mt={3}
mt={2}
>
Continue
</Button>
Expand Down

0 comments on commit bbadd4b

Please sign in to comment.