remove log

This commit is contained in:
PhilReact 2024-11-22 22:15:20 +02:00
parent 5d8a0924c3
commit cad1072035

View File

@ -56,7 +56,6 @@ class RandomSentenceGenerator extends LitElement {
firstUpdated() {
console.log('this.template', this.template)
// ...
}
@ -74,7 +73,6 @@ class RandomSentenceGenerator extends LitElement {
const wl = { ...this._wordlists }
for (const partOfSpeech in this._wordlists) {
console.log(this._wordlists[partOfSpeech])
if (Array.isArray(this._wordlists[partOfSpeech])) {
wl[partOfSpeech] = this._wordlists[partOfSpeech].filter(word => word.length <= this.maxWordLength)
}