MoHo
MoHo
### Option 1: Try to remove `node_modules` directory from your project and run `npm install` command again. However the error is: > firebase in ./src/main.js, ./src/store/actions.js and 6 others means...
Removing `*.lock` file was a good shout. during development there shouldn't be a big deal. Make sure for production this file shouldn't change as it keep all the installed packages...
Fix it with this technique. Look where I added `_isMounted` and follow the same in you code ``` class Page extends Component { _isMounted = false; state = { isLoading:...
I can help