mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix lint errors
This commit is contained in:
parent
7d9acf30b6
commit
4730a30c3d
29 changed files with 53 additions and 23 deletions
|
@ -17,6 +17,7 @@ const GenresItemsContainer: FC<GenresItemsContainerProps> = ({
|
|||
parentId,
|
||||
collectionType,
|
||||
itemType
|
||||
// eslint-disable-next-line sonarjs/function-return-type
|
||||
}) => {
|
||||
const { isLoading, data: genresResult } = useGetGenres(itemType, parentId);
|
||||
|
||||
|
|
|
@ -6,6 +6,7 @@ import SectionContainer from 'components/common/SectionContainer';
|
|||
import { CardShape } from 'utils/card';
|
||||
import type { LibraryViewProps } from 'types/library';
|
||||
|
||||
// eslint-disable-next-line sonarjs/function-return-type
|
||||
const UpcomingView: FC<LibraryViewProps> = ({ parentId }) => {
|
||||
const { isLoading, data: groupsUpcomingEpisodes } =
|
||||
useGetGroupsUpcomingEpisodes(parentId);
|
||||
|
|
|
@ -17,6 +17,7 @@ export interface MovedItem {
|
|||
playlistItemId: string
|
||||
}
|
||||
|
||||
// eslint-disable-next-line sonarjs/redundant-type-aliases
|
||||
export type PlayerErrorCode = string;
|
||||
|
||||
export interface PlayerStopInfo {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue