From ed25434d885566ca10ba4d96183c8a533e88ce31 Mon Sep 17 00:00:00 2001 From: Perry Mitchell Date: Wed, 27 Mar 2024 15:41:42 +0200 Subject: [PATCH] Remove stray console.log --- source/tab/services/formDetection.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/source/tab/services/formDetection.ts b/source/tab/services/formDetection.ts index c35039ca..5668dda4 100644 --- a/source/tab/services/formDetection.ts +++ b/source/tab/services/formDetection.ts @@ -33,7 +33,6 @@ export function waitAndAttachLaunchButtons( ) { onIdentifiedTarget((loginTarget: LoginTarget) => { const { otpField, usernameField, passwordField } = loginTarget; - console.log("FOUND TARGET", loginTarget); if (otpField) { attachLaunchButton(otpField, (el) => onInputActivate(el, loginTarget, InputType.OTP)); }