diff --git a/mods/betterModManager.js b/mods/betterModManager.js
index 2fc6630e..daea8136 100644
--- a/mods/betterModManager.js
+++ b/mods/betterModManager.js
@@ -4,7 +4,6 @@ function updateModManager() {
const modManager = document.getElementById("modManager");
// make the title a bit better
// modManager.getElementsByClassName("menuTitle").item(0).innerHTML = '';
- // ''
document.getElementById("modManagerUrl").remove();
const button = document.createElement("button");
button.id = "modListOpen";
@@ -40,7 +39,7 @@ function addModList() {
NOTE: This list contains mods ONLY available on GitHub. For custom mods hosted elsewhere, enter JS url in the .JS URL input box.`;
const modListUl = document.createElement("ul");
modListUl.id = "modListUl";
- modListUl.style.maxHeight = `50%`;
+ modListUl.style.maxHeight = "50%";
modListUl.style.overflowY = "scroll";
modList.appendChild(modListUl);
parent.appendChild(modList);
@@ -157,4 +156,4 @@ closeMenu = function() {
}
showingMenu = false;
}
-}
\ No newline at end of file
+}