* Remove debugger statement and undefined check in getAuthStatus in baseProvider.ts.

This commit is contained in:
Derrick Hammer 2023-04-09 19:45:00 -04:00
parent 35eca95c06
commit 73a64dfe22
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 0 additions and 4 deletions

View File

@ -52,10 +52,6 @@ export default abstract class BaseProvider {
const originalUrl = new URL(details.url);
const hostname = normalizeDomain(originalUrl.hostname);
if (typeof getAuthStatus === "undefined") {
debugger;
}
if (getAuthStatus().loginComplete !== true) {
return false;
}