Allow removing subdomain

This commit is contained in:
Tom Moor
2018-11-03 23:24:44 -07:00
parent 1be8e13828
commit 8de074b275
3 changed files with 5 additions and 5 deletions

View File

@@ -39,6 +39,8 @@ class ApiClient {
const headers = new Headers({
Accept: 'application/json',
'Content-Type': 'application/json',
'cache-control': 'no-cache',
pragma: 'no-cache',
});
if (stores.auth.authenticated) {
invariant(stores.auth.token, 'JWT token not set properly');
@@ -52,6 +54,7 @@ class ApiClient {
headers,
redirect: 'follow',
credentials: 'omit',
cache: 'no-cache',
});
if (response.status >= 200 && response.status < 300) {