UI: fix PropType warning on `page`

This commit is contained in:
Alex Gleason 2020-09-27 16:48:23 -05:00
parent ff85ff7bd4
commit c77c89ea08
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class WrappedRoute extends React.Component {
static propTypes = {
component: PropTypes.func.isRequired,
page: PropTypes.func,
page: PropTypes.object,
content: PropTypes.node,
componentParams: PropTypes.object,
layout: PropTypes.object,