Revert "Include cookie in every request"

This reverts commit 00589a9af1.
Changing same-origin to the unsafer include did not fix the
bug it was supposed to.
environments/dev/deployments/1
eal 7 years ago
parent 00589a9af1
commit 298bf5cfca

@ -36,7 +36,7 @@ let fetch = (url, options) => {
options = options || {}
const baseUrl = ''
const fullUrl = baseUrl + url
options.credentials = 'include'
options.credentials = 'same-origin'
return oldfetch(fullUrl, options)
}

Loading…
Cancel
Save