diff options
Diffstat (limited to 'frontend/pages/_app.js')
| -rw-r--r-- | frontend/pages/_app.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/frontend/pages/_app.js b/frontend/pages/_app.js index 65a6fe3..f649067 100644 --- a/frontend/pages/_app.js +++ b/frontend/pages/_app.js @@ -9,7 +9,6 @@ import { withRouter } from 'next/router'; class MyApp extends App { static async getInitialProps({ Component, ctx }) { - console.log('GET INITITAL PROPS'); let pageProps = {}; const ComposedComponent = withData(Component); @@ -20,7 +19,6 @@ class MyApp extends App { } render() { - console.log('RENDER'); const { Component, pageProps, query } = this.props; const ComposedComponent = withData(Component); return ( |
