mirror of
https://github.com/status-im/embark-area-51.git
synced 2025-01-22 21:29:14 +00:00
Fix prop types
This commit is contained in:
parent
044cb874f6
commit
f5602dad64
@ -40,7 +40,7 @@ const Accounts = ({accounts}) => (
|
||||
);
|
||||
|
||||
Accounts.propTypes = {
|
||||
accounts: PropTypes.object
|
||||
accounts: PropTypes.arrayOf(PropTypes.object)
|
||||
};
|
||||
|
||||
export default Accounts;
|
||||
|
@ -35,7 +35,7 @@ const Blocks = ({blocks}) => (
|
||||
);
|
||||
|
||||
Blocks.propTypes = {
|
||||
blocks: [PropTypes.object]
|
||||
blocks: PropTypes.arrayOf(PropTypes.object)
|
||||
};
|
||||
|
||||
export default Blocks;
|
||||
|
Loading…
x
Reference in New Issue
Block a user