1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Remove PropTypes

This commit is contained in:
MrTimscampi 2021-06-15 12:05:33 +02:00
parent 4d23e79f65
commit d770581c52
9 changed files with 9 additions and 54 deletions

View file

@ -1,5 +1,4 @@
import debounce from 'lodash-es/debounce';
import PropTypes from 'prop-types';
import React, { FunctionComponent, useEffect, useMemo, useRef } from 'react';
import AlphaPicker from '../alphaPicker/AlphaPickerComponent';
@ -36,7 +35,7 @@ type SearchFieldsProps = {
};
// eslint-disable-next-line @typescript-eslint/no-empty-function
const SearchFields: FunctionComponent<SearchFieldsProps> = ({ onSearch = () => {} }) => {
const SearchFields: FunctionComponent<SearchFieldsProps> = ({ onSearch = () => {} }: SearchFieldsProps) => {
const element = useRef(null);
const getSearchInput = () => element?.current?.querySelector('.searchfields-txtSearch');
@ -88,8 +87,4 @@ const SearchFields: FunctionComponent<SearchFieldsProps> = ({ onSearch = () => {
);
};
SearchFields.propTypes = {
onSearch: PropTypes.func
};
export default SearchFields;