diff --git a/src/web/added-domains-reconfirmation.mjs b/src/web/added-domains-reconfirmation.mjs index bd46d87..cc95db6 100644 --- a/src/web/added-domains-reconfirmation.mjs +++ b/src/web/added-domains-reconfirmation.mjs @@ -37,8 +37,8 @@ export class AddedDomainsReconfirmation { initUI(sendStatusToParent) { const targetElement = $("#newly-added-domain-address-list"); for (const address of this.newDomainAddresses) { - const divElement = $(`
  • `).appendTo(targetElement); - const strongElement = $(``).appendTo(divElement); + const itemElement = $(`
  • `).appendTo(targetElement); + const strongElement = $(``).appendTo(itemElement); strongElement.text(address); } window.onSendNewDomain = () => {