remove useless console.log

This commit is contained in:
AlexVeeBee 2024-03-09 23:04:22 +00:00
parent 458535c7bc
commit c9374bce13
1 changed files with 0 additions and 1 deletions

View File

@ -92,7 +92,6 @@ export function applyLocale(root = document) {
async function addLanguagesToDropdown() {
const langs = await fetch('/locales/lang.json').then(response => response.json());
console.log(langs);
for (const lang of langs) {
const option = document.createElement('option');