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 = {
|
Description.propTypes = {
|
||||||
label: PropTypes.string,
|
label: PropTypes.any,
|
||||||
value: PropTypes.string
|
value: PropTypes.any
|
||||||
};
|
};
|
||||||
|
|
||||||
export default Description
|
export default Description
|
||||||
|
|
|
@ -137,7 +137,7 @@ AppContainer.propTypes = {
|
||||||
theme: PropTypes.string,
|
theme: PropTypes.string,
|
||||||
changeTheme: PropTypes.func,
|
changeTheme: PropTypes.func,
|
||||||
fetchTheme: PropTypes.func,
|
fetchTheme: PropTypes.func,
|
||||||
history: PropTypes.instanceOf(History)
|
history: PropTypes.object
|
||||||
};
|
};
|
||||||
|
|
||||||
function mapStateToProps(state) {
|
function mapStateToProps(state) {
|
||||||
|
|
|
@ -53,7 +53,8 @@ CommunicationContainer.propTypes = {
|
||||||
isOldWeb3: PropTypes.bool,
|
isOldWeb3: PropTypes.bool,
|
||||||
isWeb3Enabled: PropTypes.bool,
|
isWeb3Enabled: PropTypes.bool,
|
||||||
messages: PropTypes.object,
|
messages: PropTypes.object,
|
||||||
messageChannels: PropTypes.array
|
messageChannels: PropTypes.array,
|
||||||
|
fetchVersions: PropTypes.func
|
||||||
};
|
};
|
||||||
|
|
||||||
function mapStateToProps(state) {
|
function mapStateToProps(state) {
|
||||||
|
|
Loading…
Reference in New Issue