hazartilirot

Results 14 comments of hazartilirot

I found at least one that works. https://redux-form.com/8.2.0/examples/

Wow, through trial and error finally I got rid of the error. You need to open app.js changing app.use(helmet({ contentSecurityPolicy: false })); I've tried to add: ``` app.use(function(req, res, next)...

Here's two lines from the package.json if you're interested in it ``` "scripts": { "watch:js": "parcel watch ./public/js/index.js --out-dir ./public/js --out-file bundle.js", "build:js": "parcel build ./public/js/index.js --out-dir ./public/js --out-file bundle.js"...

Well, once bundler.js has been compiled if we open it and scroll to the very bottom, there is a line: //# sourceMappingURL=/bundle.js.map We can manually type the correct path like...

Finally, the solution is found! You should insert **--public-url .** it'll do the trick! ``` "watch:js": "parcel watch ./public/js/index.js --out-dir ./public/js --out-file bundle.js --public-url .", "build:js": "parcel build ./public/js/index.js --out-dir...

Well, it's kind of you. Thanks! However I dealt with issues on my own.

Eventually, there is the final result. I've spent a couple of hours just debugging a simple error. As it turned out in the end that when we apply destructuring assignment...

Okay, I've logged results of both variants - they are identical. To my mind it's just a lapse.... ![difference](https://user-images.githubusercontent.com/1349977/100540879-de16c380-3248-11eb-8ba1-c6783935182d.png)

By the way, the second problem I've forgotten to mention, in the provided starter directory, there is a bug in styles with the cookie message. It was quite under the...

unrelated message to Jonas. No offense, but please, try not to scroll up and down frantically - it really makes people dizzy. I know when you're working with code you...