From cd292f6c1c152f299ea82a4cc4ad44b661f921ce Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Fri, 29 Dec 2023 16:57:46 +1100 Subject: [PATCH] fix(ui): remove errant console.log --- .../web/src/common/components/InvNumberInput/InvNumberInput.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/invokeai/frontend/web/src/common/components/InvNumberInput/InvNumberInput.tsx b/invokeai/frontend/web/src/common/components/InvNumberInput/InvNumberInput.tsx index 7e662c87f1..c3a39ad5c1 100644 --- a/invokeai/frontend/web/src/common/components/InvNumberInput/InvNumberInput.tsx +++ b/invokeai/frontend/web/src/common/components/InvNumberInput/InvNumberInput.tsx @@ -67,7 +67,6 @@ export const InvNumberInput = memo( const onBlur: FocusEventHandler = 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);