소스 검색

change writting from profileInfo to Users

David Sokol Zelazko 3 년 전
부모
커밋
115b78c466
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/lib/Services/AuthService.dart

+ 1 - 1
app/lib/Services/AuthService.dart

@@ -44,7 +44,7 @@ class AuthenticationServices {
       return null;
     }
     var querySnapshot = await FirebaseFirestore.instance
-        .collection('profileInfo')
+        .collection('Users')
         .where('mail', isEqualTo: _auth.currentUser?.email)
         .get();
     user = LoggedInUser.fromMap(querySnapshot.docs.first.data());