fix(ui): remove errant console.log

This commit is contained in:
psychedelicious 2023-12-29 16:57:46 +11:00 committed by Kent Keirsey
parent 3ce8f3d6fe
commit cd292f6c1c

View File

@ -67,7 +67,6 @@ export const InvNumberInput = memo(
const onBlur: FocusEventHandler<HTMLInputElement> = useCallback(
(e) => {
console.log('blur!');
if (!e.target.value) {
// If the input is empty, we set it to the minimum value
onChange(String(min), min);