chore(deps): update dependency prettier to v1.18.2 (#2407)

This commit is contained in:
renovate[bot]
2019-06-26 14:28:00 -04:00
committed by Shawn Erquhart
parent 321ca9b0ed
commit aded9d7c24
4 changed files with 8 additions and 14 deletions

View File

@ -108,9 +108,7 @@ class Authenticator {
const left = screen.width / 2 - conf.width / 2;
const top = screen.height / 2 - conf.height / 2;
window.addEventListener('message', this.handshakeCallback(options, cb), false);
let url = `${this.base_url}/${this.auth_endpoint}?provider=${
options.provider
}&site_id=${siteID}`;
let url = `${this.base_url}/${this.auth_endpoint}?provider=${options.provider}&site_id=${siteID}`;
if (options.scope) {
url += '&scope=' + options.scope;
}
@ -151,9 +149,7 @@ class Authenticator {
}),
);
}
const url = `${this.base_url}/${
this.auth_endpoint
}/refresh?provider=${provider}&site_id=${siteID}&refresh_token=${refresh_token}`;
const url = `${this.base_url}/${this.auth_endpoint}/refresh?provider=${provider}&site_id=${siteID}&refresh_token=${refresh_token}`;
const refreshPromise = fetch(url, { method: 'POST', body: '' }).then(res => res.json());
// Return a promise if a callback wasn't provided