From: Chocobozzz Date: Thu, 25 May 2023 06:45:37 +0000 (+0200) Subject: Remove invalid console logs X-Git-Tag: v5.2.0-rc.1~25 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=98eacc80d398a2d17ea93ffebc1dd08d3f31ee0b;p=github%2FChocobozzz%2FPeerTube.git Remove invalid console logs --- diff --git a/client/src/app/+my-account/my-account-settings/my-account-email-preferences/my-account-email-preferences.component.ts b/client/src/app/+my-account/my-account-settings/my-account-email-preferences/my-account-email-preferences.component.ts index 7fd59d7c8..381d18922 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-email-preferences/my-account-email-preferences.component.ts +++ b/client/src/app/+my-account/my-account-settings/my-account-email-preferences/my-account-email-preferences.component.ts @@ -45,7 +45,7 @@ export class MyAccountEmailPreferencesComponent extends FormReactive implements this.user.emailPublic = details.emailPublic }, - error: err => console.log(err.message) + error: err => this.notifier.error(err.message) }) } } diff --git a/client/src/app/shared/shared-forms/input-switch.component.ts b/client/src/app/shared/shared-forms/input-switch.component.ts index f340ce81e..abb96de62 100644 --- a/client/src/app/shared/shared-forms/input-switch.component.ts +++ b/client/src/app/shared/shared-forms/input-switch.component.ts @@ -20,7 +20,6 @@ export class InputSwitchComponent implements ControlValueAccessor { propagateChange = (_: any) => { /* empty */ } writeValue (checked: boolean) { - console.log(checked) this.checked = checked } @@ -33,7 +32,6 @@ export class InputSwitchComponent implements ControlValueAccessor { } update () { - console.log(this.checked) this.checked = !this.checked this.propagateChange(this.checked) }