From 421cfd202e700691f4c688af6f44bd123a647cf5 Mon Sep 17 00:00:00 2001 From: Jon Mulhern <81927768+curlyfriesplease@users.noreply.github.com> Date: Mon, 25 Nov 2024 22:28:34 +0000 Subject: [PATCH] Remove console.log statement --- .../Atoms/TextInputWithDropdown/TextInputWithDropdown.js | 1 - 1 file changed, 1 deletion(-) diff --git a/src/components/Atoms/TextInputWithDropdown/TextInputWithDropdown.js b/src/components/Atoms/TextInputWithDropdown/TextInputWithDropdown.js index 4fa457454..1d5e99de9 100644 --- a/src/components/Atoms/TextInputWithDropdown/TextInputWithDropdown.js +++ b/src/components/Atoms/TextInputWithDropdown/TextInputWithDropdown.js @@ -66,7 +66,6 @@ const TextInputWithDropdown = React.forwardRef( }, [options.length, forceClosed, onChange]); const closeDropdown = () => { - console.log('handleDropdownInstructionClick'); setForceClosed(true); setActiveOption(-1); };