clean: removed console log

This commit is contained in:
AdrienLSH
2024-03-11 12:51:43 +01:00
parent 175169add0
commit cca413baba

View File

@ -155,7 +155,6 @@ document.addEventListener("DOMContentLoaded", async () => {
el.onclick = async _ => { el.onclick = async _ => {
if (await lang.changeLanguage(el.value)) if (await lang.changeLanguage(el.value))
return; return;
console.log(lang);
document.querySelector('#languageSelector > .active')?.classList.remove('active'); document.querySelector('#languageSelector > .active')?.classList.remove('active');
el.classList.add('active'); el.classList.add('active');
}; };