Recently, I used truffle unbox example: (https://github.com/truffle-box/react-box)
But, I have facing big problem.
When I run my App.js with npm run start
, It hasn't compile error.
However, when I connect my application on web browser, It appear error, like this:
I also upgraded my nodejs and npm version, but all my attempting is fail.
My nodejs version is 7.10.1 and npm version is 6.4.1.
Why does this error occur? and what is the solution to solve this problem?
What worked for me was calling
getWeb3
as a function, then chaining thethen
. so instead ofgetWeb3.then
, it'sgetWeb3().then
.