Skip to content

Commit c0b9c83

Browse files
committed
Make visibleTodos a required property in example (ref reduxjs#1086)
1 parent 8eed7ed commit c0b9c83

File tree

1 file changed

+1
-1
lines changed
  • examples/todos-with-undo/containers

1 file changed

+1
-1
lines changed

examples/todos-with-undo/containers/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ App.propTypes = {
3333
visibleTodos: PropTypes.arrayOf(PropTypes.shape({
3434
text: PropTypes.string.isRequired,
3535
completed: PropTypes.bool.isRequired
36-
})),
36+
}).isRequired).isRequired,
3737
visibilityFilter: PropTypes.oneOf([
3838
'SHOW_ALL',
3939
'SHOW_COMPLETED',

0 commit comments

Comments
 (0)