Skip to content

Commit

Permalink
style: format code with Prettier
Browse files Browse the repository at this point in the history
This commit fixes the style issues introduced in 5755a99 according to the output
from Prettier.

Details: #50
  • Loading branch information
deepsource-autofix[bot] authored Mar 6, 2024
1 parent 5755a99 commit 2242d1f
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ChangeDetectorRef, Component, OnInit } from "@angular/core";
import { Store } from "@ngrx/store";
import { DepartmentVoiceChannelResultData } from '@resgrid/ngx-resgridlib';
import { DepartmentVoiceChannelResultData } from "@resgrid/ngx-resgridlib";
import { Observable, Subscription } from "rxjs";
import { VoiceState } from "src/app/features/voice/store/voice.store";
import { AudioProvider } from "src/app/providers/audio";
Expand All @@ -23,14 +23,16 @@ export class VoiceFooterComponent implements OnInit {
private voiceSubscription: Subscription;
private availableChannelsSubscription: Subscription;

constructor(private store: Store<VoiceState>, private audioProvider: AudioProvider,
public openViduService: OpenViduService, private ref: ChangeDetectorRef) {
constructor(
private store: Store<VoiceState>,
private audioProvider: AudioProvider,
public openViduService: OpenViduService,
private ref: ChangeDetectorRef,
) {
this.voiceState$ = this.store.select(selectVoiceState);
}

ngOnInit(): void {

}
ngOnInit(): void {}

ngOnDestroy(): void {
if (this.voiceSubscription) {
Expand Down

0 comments on commit 2242d1f

Please sign in to comment.