diff --git a/eslint.config.mjs b/eslint.config.mjs index 083e456..a134c30 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -25,7 +25,8 @@ export default defineConfig( { rules: { '@typescript-eslint/no-explicit-any': 'off', - 'no-undef': 'off' + 'no-undef': 'off', + 'no-console': 'error' } } ); diff --git a/src/lib/settings.ts b/src/lib/settings.ts index 2072d3d..eb2468c 100644 --- a/src/lib/settings.ts +++ b/src/lib/settings.ts @@ -46,7 +46,6 @@ export class HostSettings { temporaryHostDomains[domain] = host.id; await this.temporaryHostDomain.setValue(temporaryHostDomains); - console.log(await this.temporaryHostDomain.getValue()); } static async checkTemporaryHostDomain(domain: string) { const temporaryHostDomains = await this.temporaryHostDomain.getValue(); @@ -63,7 +62,6 @@ export class FF2MPVSettings { return await this.ff2mpvEnabled.getValue(); } static async setEnabled(enabled: boolean) { - console.log('set', enabled); await this.ff2mpvEnabled.setValue(enabled); } }