Merge pull request #3599 from overleaf/ae-fetch-json-export

Remove default fetchJSON export

GitOrigin-RevId: e5b1551c3fe0c0f8a4d95574117263667be04fed
This commit is contained in:
Miguel Serrano 2021-01-27 11:07:36 +01:00 committed by Copybot
parent ea07c7bfea
commit ba6c74b2d6

View file

@ -21,7 +21,7 @@ export function deleteJSON(path, options) {
return fetchJSON(path, { ...options, method: 'DELETE' })
}
export default function fetchJSON(
function fetchJSON(
path,
{ body = {}, headers = {}, method = 'GET', ...otherOptions }
) {