Hi team.
I just followed the guide of the ToDo app Bitbucket , but I cannot set todo list as the .gif image shows.
Whenever I hit the enter key, the app shows nothing like the attached image.
Is there anyone who experienced the same issue?
Hi team.
I just followed the guide of the ToDo app Bitbucket , but I cannot set todo list as the .gif image shows.
Whenever I hit the enter key, the app shows nothing like the attached image.
Hi @garylee, thank you for reaching out!
I will contact the responsible team and we will get back to you.
Sorry for the inconvenience.
Best regards,
Łukasz
thanks @KamilRichert! it works now.
thanks @ljarzabek for the quick turn around. appreciate it.
Hello I have a similar problem with the actual version. The app is in infinite loop loading.
After a few probes I think that the problem is the communication with
Faas backend. This is the console output error:
Is there anyone who experienced the same issue?
The problem is that the dependencies in package.json are obsoleted.
I have changed:
"devDependencies": {
"eslint": "^8.11.0",
"eslint-plugin-react-hooks": "^2.1.2"
},
"dependencies": {
"@forge/api": "^0.5.5",
"@forge/resolver": "0.1.0-next.2"
}
for:
"devDependencies": {
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0"
},
"dependencies": {
"@forge/api": "^3.7.1",
"@forge/resolver": "^1.5.35"
}
And now all works fine. I have sent a pull request with this change at the official repository.
still not working for me and goes into infinite loop.
Have you executed “npm install” after dependences change?