-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
On Heroku Deploy, Cell of undefined #4914
Comments
I am facing this issue too |
@Omarzikry If you find a solution can you share, please? |
@BoraALAP Did you find the solution? I am facing the same issue. |
Same issue here. |
@BoraALAP @Omarzikry Hey guys! I found a solution that is not the greatest, but worked for me: So basically I created a new app from scratch with the latest versions, as I couldn't do it manually in my package.json. Then I moved all my schemas and custom mutations to the new app and updated it in Heroku to use the new project and it finally worked. |
I have the same problem |
I was facing this locally and clearing the website cache fixed the issue. |
TLDR: I was able to resolve this issue by upgrading keystone packages. Here's the working dependencies in my package.json file: ...
"dependencies": {
"@keystone-next/admin-ui": "^12.0.0",
"@keystone-next/auth": "^19.0.0",
"@keystone-next/fields": "^5.4.0",
"@keystone-next/keystone": "14.0.1",
"@keystone-next/types": "^15.0.0",
"@keystonejs/server-side-graphql-client": "^2.1.2",
"dotenv": "^8.2.0",
"next": "^10.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
...
},
... For context, I was having the same issue: initial load on production/heroku sending me to It looks like there was an issue in a previous version of |
Comments are saying this is resolved, please open a new issue if you are having this problem |
Hello Everyone,
I have been struggling to find the issue. I'm using the new Keystone-next to build an Admin Ui for my Database.
I have achieved what I try to do. When I deploy it to Heroku, after the build and start comments run, the Heroku server says Admin UI and graphql API ready. After this point when I put the URL of my backend and put my user details, for some reason it shoots an error on the console saying
react_devtools_backend.js:2430 TypeError: Cannot read property 'Cell' of undefined at ce1d4249f40c6f8ef0a08015d265a687af2b0871.b935273d15d4cbad9696.js:1 at Set.forEach (<anonymous>) at ce1d4249f40c6f8ef0a08015d265a687af2b0871.b935273d15d4cbad9696.js:1 at Array.forEach (<anonymous>) at ce1d4249f40c6f8ef0a08015d265a687af2b0871.b935273d15d4cbad9696.js:1 at Array.forEach (<anonymous>) at ce1d4249f40c6f8ef0a08015d265a687af2b0871.b935273d15d4cbad9696.js:1 at Object.va [as useMemo] (framework.f456f8a68b85b9798e07.js:1) at t.useMemo (framework.f456f8a68b85b9798e07.js:1) at O (ce1d4249f40c6f8ef0a08015d265a687af2b0871.b935273d15d4cbad9696.js:1)
and "heroku logs --tail --app ..." giving me 2021-02-22T04:38:31.842783+00:00 heroku[router]: at=info method=POST path="/api/graphql" host=frankbackend.herokuapp.com request_id=77317228-5767-4363-abb5-97691ca5bdef fwd="174.95.140.171" dyno=web.1 connect=1ms service=22ms status=200 bytes=36143 protocol=https
like trillion times. keep looping the same as the error above.
You can find my deployed repo https://github.com/BoraALAP/frank/tree/main/backend
I have no clue why is this happening. I have checked pretty much everything. And everything works perfectly fine in my local. Do you think this is an issue with Keystone or Heroku?
Thanks in advance.
Here are some reference images
The text was updated successfully, but these errors were encountered: