diff --git a/frontend/components/App/App.jsx b/frontend/components/App/App.jsx index c39b61f683..8b25e9a203 100644 --- a/frontend/components/App/App.jsx +++ b/frontend/components/App/App.jsx @@ -11,6 +11,7 @@ export class App extends Component { static propTypes = { children: PropTypes.element, dispatch: PropTypes.func, + showBackgroundImage: PropTypes.bool, user: PropTypes.object, }; @@ -29,11 +30,11 @@ export class App extends Component { } render () { - const { children } = this.props; + const { children, showBackgroundImage } = this.props; return ( -