mirror of https://github.com/embarklabs/embark.git
Merge pull request #1013 from embark-framework/bug_fix/console-errors
Fix console errors/warnings
This commit is contained in:
commit
e23e13b418
|
@ -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
|
||||
|
|
|
@ -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) {
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue