When using for simple GET request, like this:
await api.get('group/' + groupId + '/channels')
Mande sets Content-Type header with unsafe value of application/json, which issues preflight request.
GET requests shouldn't have a body, so I think that header is unnecessary or at least optional.
Can you fix this?
When using for simple GET request, like this:
await api.get('group/' + groupId + '/channels')
Mande sets Content-Type header with unsafe value of application/json, which issues preflight request. GET requests shouldn't have a body, so I think that header is unnecessary or at least optional. Can you fix this?