Skip to content

Commit

Permalink
fix to firebase auth
Browse files Browse the repository at this point in the history
  • Loading branch information
guid-empty committed Jul 15, 2023
1 parent cd69b08 commit 3108f7e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class UserInfo {
displayName: data['displayName'] as String?,
photoUrl: data['photoUrl'] as String?,
phoneNumber: data['phoneNumber'] as String?,
isAnonymous: data['isAnonymous'] as bool,
isEmailVerified: data['isEmailVerified'] as bool,
isAnonymous: data['isAnonymous'] as bool? ?? false,
isEmailVerified: data['isEmailVerified'] as bool? ?? false,
providerId: data['providerId'] as String?,
tenantId: data['tenantId'] as String?,
refreshToken: data['refreshToken'] as String?,
Expand Down

0 comments on commit 3108f7e

Please sign in to comment.