From a898fa43861e08d9623f1e8305e763889189cde7 Mon Sep 17 00:00:00 2001 From: Cesar Gonzalez Date: Fri, 7 Jun 2024 06:57:06 -0500 Subject: [PATCH] [PM-8027] Fixing a typo --- .../services/inline-menu-field-qualification.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/browser/src/autofill/services/inline-menu-field-qualification.service.ts b/apps/browser/src/autofill/services/inline-menu-field-qualification.service.ts index df467224e13..84e0d4614e8 100644 --- a/apps/browser/src/autofill/services/inline-menu-field-qualification.service.ts +++ b/apps/browser/src/autofill/services/inline-menu-field-qualification.service.ts @@ -102,7 +102,7 @@ export class InlineMenuFieldQualificationService return true; } - // If the field has a form parent a no username field exists and the field has an + // If the field has a form parent and no username field exists and the field has an // autocomplete attribute set to "off" or "false", this is not a password field return !this.autocompleteDisabledValues.has(field.autoCompleteType); }