Remove unnecessary cast

pull/5914/merge
Chocobozzz 2023-07-28 11:41:17 +02:00
parent f932957b2e
commit 2bfc8ce3d0
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 0 additions and 2 deletions

View File

@ -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)
})
)