Update npm dependencies

This commit is contained in:
Eliot Partridge
2019-08-30 10:30:13 -05:00
parent 7603879d35
commit ef316acfe4
9 changed files with 68 additions and 64 deletions
+3 -3
View File
@@ -69,8 +69,8 @@ export async function updateAuthInfo(
}
if (Object.keys(changes).length > 0) {
Object.assign(auth, changes);
await updateAuth(auth._id, changes);
Object.assign(auth, changes as IAuth);
await updateAuth(auth._id, changes as IAuth);
}
}
@@ -102,5 +102,5 @@ async function verifyOrRestoreAuth(auth: IAuth, mergeAccount: string | undefined
}
Object.assign(auth, changes);
await updateAuth(auth._id, changes);
await updateAuth(auth._id, changes as IAuth);
}