Skip to content

Commit 5dbb1fd

Browse files
committed
1 parent fc2c857 commit 5dbb1fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/auth/ios/RNFBAuth/RNFBAuthModule.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)