Skip to content

Commit 6b31912

Browse files
committed
explicit any
1 parent ed55af5 commit 6b31912

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rubberduckvba.client/src/app/routes/inspection/inspection.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ export class InspectionComponent implements OnInit {
2828

2929
ngOnInit(): void {
3030
this.route.paramMap.pipe(
31-
switchMap(params => {
31+
switchMap((params :any) => {
3232
const name = params.get('name')!;
3333
return this.api.getInspection(name);
34-
})).subscribe(e => {
34+
})).subscribe((e :any) => {
3535
console.log(e);
3636
this.info = <InspectionViewModel>e;
3737
});

0 commit comments

Comments
 (0)