Skip to content

Commit

Permalink
fix lint (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
adi-mat authored Oct 15, 2020
1 parent aee68fa commit 05e5f70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/views/ComparisonReport.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ const ComparisonReport = ({ data, isLoading, onClose }) => {
ComparisonReport.propTypes = {
data: PropTypes.shape({
comparisonPointData: PropTypes.object,
report: PropTypes.arrayOf(PropTypes.object),
}),
isLoading: PropTypes.bool,
onClose: PropTypes.func.isRequired
Expand Down
2 changes: 1 addition & 1 deletion src/components/views/ComparisonReportList.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ ComparisonReportList.propTypes = {
onNeedMoreData: PropTypes.func,
sourceData: PropTypes.shape({
comparisonPointData: PropTypes.shape({
comparisonPoints: PropTypes.array,
comparisonPoints: PropTypes.arrayOf(PropTypes.object),
}),
report: PropTypes.arrayOf(PropTypes.object)
}),
Expand Down

0 comments on commit 05e5f70

Please sign in to comment.