@edgedev/firebase 1.5.7 → 1.5.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/edgeFirebase.ts +0 -5
- package/package.json +1 -1
package/edgeFirebase.ts
CHANGED
|
@@ -274,7 +274,6 @@ export const EdgeFirebase = class {
|
|
|
274
274
|
this.user.uid = null;
|
|
275
275
|
this.user.loggedIn = false;
|
|
276
276
|
this.user.logInError = false;
|
|
277
|
-
this.user.logInErrorMessage = "";
|
|
278
277
|
}
|
|
279
278
|
});
|
|
280
279
|
};
|
|
@@ -703,10 +702,6 @@ export const EdgeFirebase = class {
|
|
|
703
702
|
credentials.password
|
|
704
703
|
)
|
|
705
704
|
.then(() => {
|
|
706
|
-
this.user.email = "";
|
|
707
|
-
this.user.uid = null;
|
|
708
|
-
|
|
709
|
-
this.user.loggedIn = false;
|
|
710
705
|
this.user.logInError = false;
|
|
711
706
|
this.user.logInErrorMessage = "Login Sent to Firebase"
|
|
712
707
|
})
|