bump to v2.7.9

This commit is contained in:
Amruth Pillai
2021-10-24 13:36:40 +02:00
parent 41a9ce2b06
commit ba11af887c
12 changed files with 48 additions and 106 deletions
@@ -45,9 +45,8 @@ class Auth {
this.onAuthStateChangedObservers.push(observer);
return () => {
this._onAuthStateChangedObservers = this.onAuthStateChangedObservers.filter(
(obs) => obs !== observer,
);
this._onAuthStateChangedObservers =
this.onAuthStateChangedObservers.filter((obs) => obs !== observer);
};
}
@@ -23,9 +23,8 @@ class Functions {
this._uuid = uuidv4();
this._httpsCallables = {};
this._httpsCallables[
FunctionsConstants.deleteUserFunctionName
] = deleteUser;
this._httpsCallables[FunctionsConstants.deleteUserFunctionName] =
deleteUser;
}
static get instance() {