Fix console errors/warnings

This commit is contained in:
emizzle 2018-10-30 21:36:47 +01:00
parent 8d33ac6cb4
commit f645119ea6
3 changed files with 5 additions and 4 deletions

View File

@ -9,8 +9,8 @@ const Description = ({label, value}) => (
);
Description.propTypes = {
label: PropTypes.string,
value: PropTypes.string
label: PropTypes.any,
value: PropTypes.any
};
export default Description

View File

@ -137,7 +137,7 @@ AppContainer.propTypes = {
theme: PropTypes.string,
changeTheme: PropTypes.func,
fetchTheme: PropTypes.func,
history: PropTypes.instanceOf(History)
history: PropTypes.object
};
function mapStateToProps(state) {

View File

@ -53,7 +53,8 @@ CommunicationContainer.propTypes = {
isOldWeb3: PropTypes.bool,
isWeb3Enabled: PropTypes.bool,
messages: PropTypes.object,
messageChannels: PropTypes.array
messageChannels: PropTypes.array,
fetchVersions: PropTypes.func
};
function mapStateToProps(state) {