Skip to content

Commit

Permalink
remove method, hard code string.
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-livefront committed Dec 20, 2024
1 parent 91ff855 commit b0d9252
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit b0d9252

Please sign in to comment.