Skip to content

Commit f89477f

Browse files
fix: enforce nonnull type for useDPoP parameter in initializeAuth0WithConfiguration method (#1388)
1 parent e616138 commit f89477f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/A0Auth0.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ - (dispatch_queue_t)methodQueue
8181
RCT_EXPORT_METHOD(initializeAuth0WithConfiguration:(NSString *)clientId
8282
domain:(NSString *)domain
8383
localAuthenticationOptions:(NSDictionary * _Nullable)localAuthenticationOptions
84-
useDPoP:(NSNumber *)useDPoP
84+
useDPoP:(nonnull NSNumber *)useDPoP
8585
resolve:(RCTPromiseResolveBlock)resolve
8686
reject:(RCTPromiseRejectBlock)reject) {
8787
[self tryAndInitializeNativeBridge:clientId domain:domain withLocalAuthenticationOptions:localAuthenticationOptions useDPoP:useDPoP resolve:resolve reject:reject];

0 commit comments

Comments
 (0)