From 2bfc8ce3d01a37284e3cd241816071f189cf5d8d Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 28 Jul 2023 11:41:17 +0200 Subject: [PATCH] Remove unnecessary cast --- client/src/app/+videos/video-list/overview/overview.service.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/src/app/+videos/video-list/overview/overview.service.ts b/client/src/app/+videos/video-list/overview/overview.service.ts index 4a7d9c7c5..67a1adb28 100644 --- a/client/src/app/+videos/video-list/overview/overview.service.ts +++ b/client/src/app/+videos/video-list/overview/overview.service.ts @@ -51,8 +51,6 @@ export class OverviewService { switchMap(videos => this.videosService.extractVideos({ total: 0, data: videos })), map(result => result.data), tap(videos => { - // FIXME: typings & lint - // eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion videosOverviewResult[key].push(immutableAssign(object, { videos }) as any) }) )