mirror of
https://github.com/status-im/ETHReport.git
synced 2025-02-03 18:13:59 +00:00
Fixing data proptype
This commit is contained in:
parent
f4256af531
commit
1beebf9b9b
@ -36,7 +36,7 @@ const InterviewsList = props => (
|
||||
|
||||
InterviewsList.propTypes = {
|
||||
isInterviewsListModalOpen: PropTypes.bool.isRequired,
|
||||
data: PropTypes.arrayOf(PropTypes.node).isRequired,
|
||||
data: PropTypes.arrayOf(PropTypes.shape({})).isRequired,
|
||||
toggleSingleInterview: PropTypes.func.isRequired,
|
||||
toggleInterviewsListModal: PropTypes.func.isRequired,
|
||||
};
|
||||
|
@ -22,7 +22,7 @@ const RelatedInterviewsList = props => (
|
||||
);
|
||||
|
||||
RelatedInterviewsList.propTypes = {
|
||||
data: PropTypes.arrayOf(PropTypes.node).isRequired,
|
||||
data: PropTypes.arrayOf(PropTypes.shape({})).isRequired,
|
||||
toggleSingleInterview: PropTypes.func.isRequired,
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user