From 0df302ca8d680652b58a0a7f606c2b383c53b1f6 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 6 Apr 2021 10:08:21 +0200 Subject: [PATCH] Remove unused sort param --- client/src/app/+my-library/my-videos/my-videos.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app/+my-library/my-videos/my-videos.component.ts b/client/src/app/+my-library/my-videos/my-videos.component.ts index d6e66e617..356e158d6 100644 --- a/client/src/app/+my-library/my-videos/my-videos.component.ts +++ b/client/src/app/+my-library/my-videos/my-videos.component.ts @@ -93,7 +93,7 @@ export class MyVideosComponent implements OnInit, DisableForReuseHook { this.videosSelection.enabledForReuse() } - getVideosObservable (page: number, sort: VideoSortField) { + getVideosObservable (page: number) { const newPagination = immutableAssign(this.pagination, { currentPage: page }) return this.videoService.getMyVideos(newPagination, this.sort, this.videosSearch)