@GrzywN
Posted
Great job @FluffyKas!
I had the same problem while doing this challenge and I couldn't get any idea why it wasn't working properly, but somehow I figured it out.
To fix this Firefox issue, you have to add {cache: no-cache}
object to fetch method. For example
fetch("some.json", {cache: "no-cache"})
.then(function(response) { /* consume the response */ });
Hope this helps! Happy coding!
Marked as helpful
@FluffyKas
Posted
@GrzywN Ooh, this worked like charm! Thanks Karol ^_^