diff --git a/core/templates/core/base.html b/core/templates/core/base.html
index e19909fc..95f87603 100644
--- a/core/templates/core/base.html
+++ b/core/templates/core/base.html
@@ -45,10 +45,8 @@
let banners = document.querySelectorAll('.install-popup');
let currentIndex = 0;
- console.log(banners.length);
function showBanner(index) {
banners.forEach((banner, i) => {
- console.log(i, index);
banner.classList.toggle('hide', i !== index);
});
}