fix: unclosed word tags in words history

!nuf
This commit is contained in:
Miodec 2025-08-20 12:09:30 +02:00
parent 2a6bfbeefb
commit f52f262f71

View file

@ -1395,7 +1395,9 @@ async function loadWordsHistory(): Promise<boolean> {
wordEl += "<letter>" + char + "</letter>";
}
wordEl += "</div>";
} catch {}
} catch {
wordEl += "</div>";
}
}
wordsHTML += wordEl;
}