-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: universal login #18
Conversation
Signed-off-by: Iuri Pereira <[email protected]>
if (path) { | ||
route.replace(path as string); | ||
if (action) { | ||
route.replace(action); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This changes path
to action
. To test, in this PR branch I added console.log("action " + action);
. It prints "action expo-development-client". This matches the error "Page could not be found land.gno.gnokey:///expo-development-client". Interestingly, in the main branch, path is undefined.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No idea where it comes from. So I added a case to it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested on Android and iOS simulators.
This PR covers the following use cases:
related to gnoverse/dsocial#136
Signed-off-by: Iuri Pereira [email protected]