@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.
Files changed (2) hide show
  1. package/edgeFirebase.ts +0 -5
  2. 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
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@edgedev/firebase",
3
- "version": "1.5.7",
3
+ "version": "1.5.8",
4
4
  "description": "Vue 3 / Nuxt 3 Plugin or Nuxt 3 global composable for firebase authentication and firestore.",
5
5
  "main": "index.ts",
6
6
  "scripts": {