You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We observed this after upgrading apisauce from 1.1.2 to 2.1.5
We had code similar to apisauceInstance.post('some-url', null, configObject) which then resulted in a null (as a four-letter string) being sent as a request body.
Changing to apisauceInstance.post('some-url', undefined, configObject) reverted to the expected behavior (no request body sent).
We observed this after upgrading
apisauce
from1.1.2
to2.1.5
We had code similar to
apisauceInstance.post('some-url', null, configObject)
which then resulted in anull
(as a four-letter string) being sent as a request body.Changing to
apisauceInstance.post('some-url', undefined, configObject)
reverted to the expected behavior (no request body sent).This seems to be similar to #9
The text was updated successfully, but these errors were encountered: