diff --git a/examples/with-graphql-hooks/lib/with-graphql-client.js b/examples/with-graphql-hooks/lib/with-graphql-client.js index f374ec5d8550b..b9be751934d08 100644 --- a/examples/with-graphql-hooks/lib/with-graphql-client.js +++ b/examples/with-graphql-hooks/lib/with-graphql-client.js @@ -7,7 +7,7 @@ export default App => { return class GraphQLHooks extends React.Component { static displayName = 'GraphQLHooks(App)' static async getInitialProps(ctx) { - const { Component, router } = ctx + const { AppTree } = ctx let appProps = {} if (App.getInitialProps) { @@ -22,14 +22,7 @@ export default App => { try { // Run all GraphQL queries graphQLState = await getInitialState({ - App: ( - - ), + App: , client: graphQLClient, }) } catch (error) {