We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2c325e commit d3c3843Copy full SHA for d3c3843
examples/wordpress/package.json
@@ -4,7 +4,6 @@
4
"dev": "WP_HOME=http://localhost:3000 smooth dev"
5
},
6
"dependencies": {
7
- "@loadable/babel-plugin": "^5.7.1",
8
"graphql-tag": "^2.10.1",
9
"react": "^16.8.2",
10
"react-dom": "^16.8.2",
examples/wordpress/src/_app.js
@@ -12,7 +12,7 @@ const PAGE = gql`
12
13
export default function Page({ Component, ...props }) {
14
return (
15
- <Query prefetch={false} query={PAGE}>
+ <Query query={PAGE}>
16
{({ data }) =>
17
data && (
18
<>
0 commit comments