File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/auth/ios/RNFBAuth Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1686,13 +1686,13 @@ - (NSDictionary *)firebaseUserToDict:(FIRUser *)user {
16861686 NSMutableArray *enrolledFactors = [NSMutableArray array ];
16871687
16881688 for (FIRPhoneMultiFactorInfo *hint in hints) {
1689- NSString *enrollmentDate =
1689+ NSString *enrollmentTime =
16901690 [[[NSISO8601DateFormatter alloc ] init ] stringFromDate: hint.enrollmentDate];
16911691 [enrolledFactors addObject: @{
16921692 @" uid" : hint.UID ,
16931693 @" factorId" : [self getJSFactorId: (hint.factorID)],
16941694 @" displayName" : hint.displayName == nil ? [NSNull null ] : hint.displayName ,
1695- @" enrollmentDate " : enrollmentDate ,
1695+ @" enrollmentTime " : enrollmentTime ,
16961696 }];
16971697 }
16981698 return enrolledFactors;
You can’t perform that action at this time.
0 commit comments