Skip to content

Commit 14e2f0c

Browse files
committed
Unneeded parenthesis
1 parent 886b724 commit 14e2f0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/spinner/spinner.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class SpinnerComponent implements OnDestroy {
2323
constructor(private http: HttpInterceptorService) {
2424
this.subscription = this.http
2525
.getPendingRequestStatusSubject()
26-
.subscribe((isSpinnerVisible) => {
26+
.subscribe(isSpinnerVisible => {
2727
this.isSpinnerVisible = isSpinnerVisible;
2828
});
2929
}

0 commit comments

Comments
 (0)