Remove invalid console logs
This commit is contained in:
parent
608c07bb39
commit
98eacc80d3
|
@ -45,7 +45,7 @@ export class MyAccountEmailPreferencesComponent extends FormReactive implements
|
||||||
this.user.emailPublic = details.emailPublic
|
this.user.emailPublic = details.emailPublic
|
||||||
},
|
},
|
||||||
|
|
||||||
error: err => console.log(err.message)
|
error: err => this.notifier.error(err.message)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,6 @@ export class InputSwitchComponent implements ControlValueAccessor {
|
||||||
propagateChange = (_: any) => { /* empty */ }
|
propagateChange = (_: any) => { /* empty */ }
|
||||||
|
|
||||||
writeValue (checked: boolean) {
|
writeValue (checked: boolean) {
|
||||||
console.log(checked)
|
|
||||||
this.checked = checked
|
this.checked = checked
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -33,7 +32,6 @@ export class InputSwitchComponent implements ControlValueAccessor {
|
||||||
}
|
}
|
||||||
|
|
||||||
update () {
|
update () {
|
||||||
console.log(this.checked)
|
|
||||||
this.checked = !this.checked
|
this.checked = !this.checked
|
||||||
this.propagateChange(this.checked)
|
this.propagateChange(this.checked)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue