getting file and all, now just need to sort of hand off to database and write to the right places

This commit is contained in:
Arjun Patel
2022-02-05 14:53:42 -08:00
parent be28e6dc88
commit e92a54623c
5 changed files with 115 additions and 15 deletions
-1
View File
@@ -27,7 +27,6 @@ export default class UserService {
const docSnap = await getDoc(docRef);
if (docSnap.exists()) {
console.log("got user data");
let user: User = docSnap.data() as User;
return user;
} else {