From e3499553c437527e80ff28b1b12ee398446bc8bb Mon Sep 17 00:00:00 2001 From: Dima Date: Wed, 2 Jan 2019 23:39:38 +0300 Subject: [PATCH] unnecessary prop store in getInitialProps (#5983) --- examples/with-mobx-state-tree/pages/_app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-mobx-state-tree/pages/_app.js b/examples/with-mobx-state-tree/pages/_app.js index 249a4ab6..69ca39d6 100644 --- a/examples/with-mobx-state-tree/pages/_app.js +++ b/examples/with-mobx-state-tree/pages/_app.js @@ -5,7 +5,7 @@ import App, { Container } from 'next/app' import { initializeStore } from '../stores/store' export default class MyApp extends App { - static async getInitialProps ({ Component, router, ctx }) { + static async getInitialProps ({ Component, ctx }) { // // Use getInitialProps as a step in the lifecycle when // we can initialize our store