diff --git a/apps/browser/src/autofill/overlay/inline-menu/pages/list/autofill-inline-menu-list.ts b/apps/browser/src/autofill/overlay/inline-menu/pages/list/autofill-inline-menu-list.ts index d196cab1085..0829de72f94 100644 --- a/apps/browser/src/autofill/overlay/inline-menu/pages/list/autofill-inline-menu-list.ts +++ b/apps/browser/src/autofill/overlay/inline-menu/pages/list/autofill-inline-menu-list.ts @@ -1219,7 +1219,7 @@ export class AutofillInlineMenuList extends AutofillInlineMenuPageElement { const totpCodeSpan = document.createElement("span"); totpCodeSpan.classList.toggle("cipher-subtitle"); totpCodeSpan.classList.toggle("masked-totp", !!reprompt); - totpCodeSpan.textContent = reprompt ? "●".repeat(totpCode.length) : formattedTotpCode; + totpCodeSpan.textContent = reprompt ? "●●●●●●" : formattedTotpCode; totpCodeSpan.setAttribute("aria-label", this.getTranslation("totpCodeAria")); totpCodeSpan.setAttribute("data-testid", "totp-code"); containerElement.appendChild(totpCodeSpan);