remove console log

This commit is contained in:
MathieuG-P
2023-03-04 22:17:08 +01:00
parent d9ff78c21d
commit bea435439e
2 changed files with 0 additions and 5 deletions
@@ -16,8 +16,6 @@ export function Modal() {
const {firstColor, secondColor} = useThemeColor();
console.log(ModalComponent, resolver);
useEffect(() => {
const onEscape = (e: KeyboardEvent) => {
@@ -25,8 +25,6 @@ export class AudioPlayerService{
this.config = ConfigurationService.getInstance();
console.log("BBB", this.config.get<PlayerVolume>("audio-level"));
this._volume$ = new BehaviorSubject(
this.config.get<PlayerVolume>("audio-level") || { volume: 0.5, muted: false }
);
@@ -40,7 +38,6 @@ export class AudioPlayerService{
this.player.onended = () => this._playing$.next(false);
this._volume$.subscribe(volume => {
console.log("AAA", volume);
this.player.volume = volume.volume;
this.player.muted = volume.muted;
this.config.set("audio-level", volume);