We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, yarn build fails with this error... Any ideas how to fix it?
yarn build
/src/components/Router/index.tsx ` const withQuery = graphql< IRouterQueryProps, IRouterQueryData, IRouterQueryVariables, IRouterQueryChildProps
(query, { options: props => ({ variables: { path: props.url.asPath, }, }), props: ({ ownProps, data }) => ({ ...ownProps, entity: data.route && data.route.entity, loading: data.loading, }), }); `
The text was updated successfully, but these errors were encountered:
I had the same. To make it work for the moment i renamed components/router/index.tsx to components/router/index.jsx to disable the type check.
components/router/index.tsx
components/router/index.jsx
Sorry, something went wrong.
No branches or pull requests
Hi,
yarn build
fails with this error...Any ideas how to fix it?
/src/components/Router/index.tsx
`
const withQuery = graphql<
IRouterQueryProps,
IRouterQueryData,
IRouterQueryVariables,
IRouterQueryChildProps
The text was updated successfully, but these errors were encountered: