Unhandled Runtime Error
Error: Invalid hook call. Hooks can only be called inside of the body of a function component. This could happen for one of the following reasons:
1. You might have mismatching versions of React and the renderer (such as React DOM)
2. You might be breaking the Rules of Hooks
3. You might have more than one copy of React in the same app
See https://reactjs.org/link/invalid-hook-call for tips about how to debug and fix this problem.
[email protected] /Users/benjaminschachter/zora-hack
├─┬ @apollo/[email protected]
│ └── [email protected] deduped
├─┬ @rainbow-me/[email protected]
│ ├─┬ [email protected]
│ │ ├─┬ [email protected]
│ │ │ └── [email protected] deduped
│ │ ├─┬ [email protected]
│ │ │ └── [email protected] deduped
│ │ ├── [email protected] deduped
│ │ ├─┬ [email protected]
│ │ │ └── [email protected] deduped
│ │ └─┬ [email protected]
│ │ └── [email protected] deduped
│ └── [email protected] deduped
├─┬ @zoralabs/[email protected]
│ ├─┬ [email protected]
│ │ └── [email protected] deduped
│ ├── [email protected]
│ └─┬ [email protected]
│ └── [email protected] deduped
├─┬ @zoralabs/[email protected]
│ ├── [email protected] deduped
│ └─┬ [email protected]
│ └── [email protected]
├─┬ [email protected]
│ ├── [email protected] deduped
│ └─┬ [email protected]
│ └── [email protected] deduped
├─┬ [email protected]
│ └── [email protected] deduped
├── [email protected]
└─┬ [email protected]
├─┬ @wagmi/[email protected]
│ └─┬ [email protected]
│ └── [email protected] deduped
├─┬ [email protected]
│ └── [email protected] deduped
├── [email protected] deduped
└─┬ [email protected]
└── [email protected] deduped
```
To test that `@zora/nft-components` was the culprit I added [selective version resolutions](https://classic.yarnpkg.com/en/docs/selective-version-resolutions/) and bumped `@zora/nft-components` to v18 with the rest of my project.
https://github.com/benschac/create-zora-graphql-app/blob/main/package.json#L25
Now the components work and the page is loading.
The simplest solution here seems to not ship a version of react with `@zora/nft-components`
After importing
@zora/nft-componentspackage in https://github.com/benschac/create-zora-graphql-app/ I got an error.Which
3seemed like the likely culprit.I then:
npm ls reactand confirmed@zora/nft-componentswas the only package that shipped with react v.17