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,4 +1,3 @@
import PropTypes from 'prop-types';
import React, { FunctionComponent, useState } from 'react';
import SearchFields from '../search/SearchFields';
@ -40,10 +39,4 @@ const SearchPage: FunctionComponent<SearchProps> = ({ serverId, parentId, collec
);
};
SearchPage.propTypes = {
serverId: PropTypes.string,
parentId: PropTypes.string,
collectionType: PropTypes.string
};
export default SearchPage;