Skip to content

Commit

Permalink
Fix mismatched variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Oct 16, 2024
1 parent f5d4ebe commit 2309d40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/web/added-domains-reconfirmation.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ export class AddedDomainsReconfirmation {
initUI(sendStatusToParent) {
const targetElement = $("#newly-added-domain-address-list");
for (const address of this.newDomainAddresses) {
const divElement = $(`<li></li>`).appendTo(targetElement);
const strongElement = $(`<strong></strong>`).appendTo(divElement);
const itemElement = $(`<li></li>`).appendTo(targetElement);
const strongElement = $(`<strong></strong>`).appendTo(itemElement);
strongElement.text(address);
}
window.onSendNewDomain = () => {
Expand Down

0 comments on commit 2309d40

Please sign in to comment.