diff --git a/domain-server/resources/web/js/settings.js b/domain-server/resources/web/js/settings.js
index b89f9699e5..88ae786b66 100644
--- a/domain-server/resources/web/js/settings.js
+++ b/domain-server/resources/web/js/settings.js
@@ -485,7 +485,7 @@ function reloadSettings() {
if (!_.has(data["locked"], "metaverse") && !_.has(data["locked"]["metaverse"], "id")) {
// append the domain selection modal, as long as it's not locked
- appendDomainSelectionModal();
+ appendDomainIDButtons();
}
// call our method to setup the HF account button
@@ -493,12 +493,12 @@ function reloadSettings() {
});
}
-function appendDomainSelectionModal() {
+function appendDomainIDButtons() {
var metaverseInput = $("[name='metaverse.id']");
- var createButton = $("");
- var chooseButton = $("");
metaverseInput.after(chooseButton);