diff --git a/src/images/off.png b/src/images/off.png deleted file mode 100644 index 51c605d..0000000 Binary files a/src/images/off.png and /dev/null differ diff --git a/src/index.html b/src/index.html index 2322b7f..460c7f9 100644 --- a/src/index.html +++ b/src/index.html @@ -110,11 +110,8 @@ if (group.groupName) { const button = document.createElement("div"); button.classList.add("button"); - const img = document.createElement("img"); - img.src = "/images/off.png"; const span = document.createElement("span"); span.textContent = group.groupName; - button.appendChild(img); button.appendChild(span); itemContainer.appendChild(button); }