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
When set to true true, a response that throws an exception during parsing will return null
When set to false, a response that throws an exception during parsing will return the text of the response body. This is especially helpful for responses that send a string (e.g., a token) that was not properly escaped (123AZY vs. "123AZY")
Explicitly checks for responses with a 204 no content response and returns null. Previously, a json parse was attempted and a warning was logged in the console
Previously, the "before" hook could only modify options passed to Fetch. This change allows it to modify all options, like successDataPath and onSuccess.