From 771183097c38faed14c0426095eb502f600ca945 Mon Sep 17 00:00:00 2001 From: Andrew Wood Date: Thu, 21 Jan 2021 11:10:25 -0500 Subject: [PATCH] 680 Untype incorrectly typed params --- src/app/+collection-page/collection-page.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/+collection-page/collection-page.component.ts b/src/app/+collection-page/collection-page.component.ts index 50444cf27f..8065480604 100644 --- a/src/app/+collection-page/collection-page.component.ts +++ b/src/app/+collection-page/collection-page.component.ts @@ -94,7 +94,7 @@ export class CollectionPageComponent implements OnInit { ) ); - this.route.queryParams.pipe(take(1)).subscribe((params: PaginationChangeEvent) => { + this.route.queryParams.pipe(take(1)).subscribe((params) => { this.metadata.processRemoteData(this.collectionRD$); }); }