Skip to content

Commit

Permalink
Fix #790 order of parameters for register on iOS (#804)
Browse files Browse the repository at this point in the history
* Fix order of parameters for `register` on iOS

* chore: add changeset

---------

Co-authored-by: Tudor M <[email protected]>
Co-authored-by: Rob Walker <[email protected]>
  • Loading branch information
3 people authored Sep 6, 2023
1 parent 5e71171 commit e4efb31
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/curly-years-obey.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'react-native-app-auth': patch
---

Fix order of parameters for register on iOS
2 changes: 1 addition & 1 deletion ios/RNAppAuth.m
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ - (dispatch_queue_t)methodQueue
subjectType: (NSString *) subjectType
tokenEndpointAuthMethod: (NSString *) tokenEndpointAuthMethod
additionalParameters: (NSDictionary *_Nullable) additionalParameters
connectionTimeoutSeconds: (double) connectionTimeoutSeconds
serviceConfiguration: (NSDictionary *_Nullable) serviceConfiguration
connectionTimeoutSeconds: (double) connectionTimeoutSeconds
additionalHeaders: (NSDictionary *_Nullable) additionalHeaders
resolve: (RCTPromiseResolveBlock) resolve
reject: (RCTPromiseRejectBlock) reject)
Expand Down

0 comments on commit e4efb31

Please sign in to comment.