Skip to content

Commit d1e8428

Browse files
Merge branch 'master' of https://github.com/auth0/react-native-auth0 into SDK-6263_mrrt_support
2 parents 6df3e8b + ebc5dbc commit d1e8428

File tree

4 files changed

+254
-282
lines changed

4 files changed

+254
-282
lines changed

example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
"@react-native/typescript-config": "0.82.1",
3535
"@types/react": "^19.2.2",
3636
"babel-loader": "^10.0.0",
37-
"babel-plugin-react-native-web": "^0.20.0",
38-
"html-webpack-plugin": "^5.6.3",
37+
"babel-plugin-react-native-web": "^0.21.2",
38+
"html-webpack-plugin": "^5.6.5",
3939
"react-native-builder-bob": "^0.40.15",
4040
"react-native-monorepo-config": "^0.1.9",
4141
"url-loader": "^4.1.1",

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@
120120
"minami": "^1.2.3",
121121
"node-fetch": "^3.3.2",
122122
"pod-install": "^0.3.9",
123-
"prettier": "3.0.3",
123+
"prettier": "3.7.3",
124124
"prettier-plugin-organize-imports": "4.3.0",
125-
"pretty-quick": "^4.1.1",
125+
"pretty-quick": "^4.2.2",
126126
"react": "19.1.1",
127127
"react-dom": "19.1.1",
128128
"react-native": "0.82.1",
@@ -136,7 +136,7 @@
136136
"typescript-eslint": "^8.46.2"
137137
},
138138
"dependencies": {
139-
"@auth0/auth0-spa-js": "2.7.0",
139+
"@auth0/auth0-spa-js": "2.9.1",
140140
"base-64": "^1.0.0",
141141
"jwt-decode": "^4.0.0",
142142
"url": "^0.11.4"

src/platforms/native/bridge/NativeBridgeManager.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ export class NativeBridgeManager implements INativeBridge {
7979
options: NativeAuthorizeOptions
8080
): Promise<Credentials> {
8181
let presentationStyle = options.useSFSafariViewController
82-
? (options.useSFSafariViewController as { presentationStyle: number })
82+
? ((options.useSFSafariViewController as { presentationStyle: number })
8383
?.presentationStyle ??
84-
SafariViewControllerPresentationStyle.fullScreen
84+
SafariViewControllerPresentationStyle.fullScreen)
8585
: undefined;
8686
const scheme =
8787
parameters.redirectUrl?.split('://')[0] ?? options.customScheme;

0 commit comments

Comments
 (0)