Skip to content

Commit

Permalink
hotfixes proptypes
Browse files Browse the repository at this point in the history
  • Loading branch information
jhmullen committed Aug 17, 2022
1 parent 1611d9c commit e90118e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion packages/cms/src/components/ProfileRenderer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ ProfileRenderer.childContextTypes = {
router: PropTypes.object,
variables: PropTypes.object,
initialVariables: PropTypes.object,
comparison: PropTypes.boolean,
comparison: PropTypes.bool,
compVariables: PropTypes.object,
onSelector: PropTypes.func,
onOpenModal: PropTypes.func,
Expand Down
4 changes: 2 additions & 2 deletions packages/cms/src/components/Viz/Viz.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ Viz.childContextTypes = {
updateSource: PropTypes.func,
variables: PropTypes.object,
compVariables: PropTypes.object,
comparison: PropTypes.boolean
comparison: PropTypes.bool
};

Viz.contextTypes = {
Expand All @@ -200,7 +200,7 @@ Viz.contextTypes = {
updateSource: PropTypes.func,
variables: PropTypes.object,
compVariables: PropTypes.object,
comparison: PropTypes.boolean
comparison: PropTypes.bool
};

Viz.defaultProps = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ Selector.contextTypes = {
print: PropTypes.bool,
variables: PropTypes.object,
compVariables: PropTypes.object,
comparison: PropTypes.boolean
comparison: PropTypes.bool
};

Selector.defaultProps = {
Expand Down

0 comments on commit e90118e

Please sign in to comment.