redux fetch body is not use with no cors mode

You’re getting an opaque response [1] [2], because you’re using fetch with mode: 'no-cors'.
You need to use mode: 'cors' and the server needs to send the required CORS headers [3] in order to access the response.

Leave a Comment