From df5be218a5bf6e43f8c0019d58702ce5c620bf23 Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Sun, 2 Nov 2025 05:52:56 -0800 Subject: [PATCH] Remove debug console logs from Input component --- src-web/components/core/Input.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src-web/components/core/Input.tsx b/src-web/components/core/Input.tsx index 546cf9f2..f70da26f 100644 --- a/src-web/components/core/Input.tsx +++ b/src-web/components/core/Input.tsx @@ -401,7 +401,6 @@ function EncryptionInput({ setState({ fieldType: 'encrypted', security, value, obscured: true, error: null }); // We're calling this here because we want the input to be fully initialized so the caller // can do stuff like change the selection. - console.log('INIT FIRST'); setRef?.(inputRef.current); }, onError: (value) => { @@ -415,12 +414,10 @@ function EncryptionInput({ }, }); } else if (isEncryptionEnabled && !defaultValue) { - console.log('INIT SECOND'); // Default to encrypted field for new encrypted inputs setState({ fieldType: 'encrypted', security, value: '', obscured: true, error: null }); requestAnimationFrame(() => setRef?.(inputRef.current)); } else if (isEncryptionEnabled) { - console.log('INIT THIRD'); // Don't obscure plain text when encryption is enabled setState({ fieldType: 'text', @@ -431,7 +428,6 @@ function EncryptionInput({ }); requestAnimationFrame(() => setRef?.(inputRef.current)); } else { - console.log('INIT FOURTH'); // Don't obscure plain text when encryption is disabled setState({ fieldType: 'text',