rm unnecessary deps

This commit is contained in:
Lachlan Kermode
2020-08-03 17:46:19 +02:00
parent 84198be0d6
commit dfeebce4b5
2 changed files with 1 additions and 21 deletions

View File

@@ -1,5 +1,4 @@
import React from 'react'
import PropTypes from 'prop-types'
import Img from 'react-image'
import Spinner from '../Spinner'
import { typeForPath } from '../../../common/utilities'
@@ -77,13 +76,4 @@ const CardSource = ({ source, isLoading, onClickHandler }) => {
)
}
CardSource.propTypes = {
source: PropTypes.shape({
id: PropTypes.string.isRequired,
type: PropTypes.string
}),
isLoading: PropTypes.bool,
onClickHandler: PropTypes.func.isRequired
}
export default CardSource