mirror of https://github.com/Chocobozzz/PeerTube
Remove unnecessary cast
parent
f932957b2e
commit
2bfc8ce3d0
|
@ -51,8 +51,6 @@ export class OverviewService {
|
||||||
switchMap(videos => this.videosService.extractVideos({ total: 0, data: videos })),
|
switchMap(videos => this.videosService.extractVideos({ total: 0, data: videos })),
|
||||||
map(result => result.data),
|
map(result => result.data),
|
||||||
tap(videos => {
|
tap(videos => {
|
||||||
// FIXME: typings & lint
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion
|
|
||||||
videosOverviewResult[key].push(immutableAssign(object, { videos }) as any)
|
videosOverviewResult[key].push(immutableAssign(object, { videos }) as any)
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue