diff --git a/ui/js/component/fileCard/view.jsx b/ui/js/component/fileCard/view.jsx index bf0901035..e703a7333 100644 --- a/ui/js/component/fileCard/view.jsx +++ b/ui/js/component/fileCard/view.jsx @@ -7,6 +7,14 @@ import FilePrice from "component/filePrice"; import UriIndicator from "component/uriIndicator"; class FileCard extends React.PureComponent { + constructor(props) { + super(props); + + this.state = { + hovered: false, + }; + } + componentWillMount() { this.resolve(this.props); }