From 98eacc80d398a2d17ea93ffebc1dd08d3f31ee0b Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 25 May 2023 08:45:37 +0200 Subject: Remove invalid console logs --- client/src/app/shared/shared-forms/input-switch.component.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'client/src/app/shared') 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) } -- cgit v1.2.3