We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b3600 commit a21b005Copy full SHA for a21b005
demo/app/main-view-model.ts
@@ -89,9 +89,9 @@ export class HelloWorldModel extends Observable {
89
}
90
91
tryDeepLinking = async () => {
92
- const redirectToURL = `https://proyecto26.github.io/react-native-inappbrowser/`;
+ const loginUrl = `https://proyecto26.github.io/react-native-inappbrowser/`;
93
const redirectUrl = this.getDeepLink('home');
94
- const url = `${redirectToURL}?redirect_url=${encodeURIComponent(redirectUrl)}`;
+ const url = `${loginUrl}?redirect_url=${encodeURIComponent(redirectUrl)}`;
95
if (await InAppBrowser.isAvailable()) {
96
const result = await InAppBrowser.openAuth(url, redirectUrl);
97
await this.sleep(800);
0 commit comments