* Remove debugger statement and undefined check in getAuthStatus in baseProvider.ts.
This commit is contained in:
parent
35eca95c06
commit
73a64dfe22
|
@ -52,10 +52,6 @@ export default abstract class BaseProvider {
|
||||||
const originalUrl = new URL(details.url);
|
const originalUrl = new URL(details.url);
|
||||||
const hostname = normalizeDomain(originalUrl.hostname);
|
const hostname = normalizeDomain(originalUrl.hostname);
|
||||||
|
|
||||||
if (typeof getAuthStatus === "undefined") {
|
|
||||||
debugger;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (getAuthStatus().loginComplete !== true) {
|
if (getAuthStatus().loginComplete !== true) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue