-
Notifications
You must be signed in to change notification settings - Fork 125
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
chore: add example app to rn-base #1171
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Your org has enabled the Graphite merge queue for merging into mainAdd the label “graphite-merge-queue” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
gotta remerge this because the history got messed up |
useEffect(() => { | ||
// get the user if already logged in | ||
signer.getAuthDetails().then(setUser); | ||
}, []); |
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.
React Hook useEffect has a missing dependency: 'signer'. Either include it or remove the dependency array.
const subscription = Linking.addEventListener("url", handleIncomingURL); | ||
|
||
return () => subscription.remove(); | ||
}, []); |
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.
React Hook useEffect has a missing dependency: 'handleIncomingURL'. Either include it or remove the dependency array.
* fix: fix linting and spacing issues * feat: remove package hoisting from example project * fix: fix linting and spacing issues * feat: add signer authentication sample implementation in example app * feat: add tsx to handle server instantiation * feat: update peer-dependencies for signer package --------- Co-authored-by: Iyk Azorji <[email protected]>
PR-Codex overview
This PR focuses on updating the
@account-kit/react-native-signer
library by modifying exports, enhancing server capabilities, and refactoring client-side code for improved navigation and session management.Detailed summary
RNSignerClient
toRNAlchemySigner
inindex.tsx
.redirect-server/index.ts
for handling redirects.MainActivity.kt
to supportreact-native-screens
.manager.ts
to include error handling.package.json
scripts to include a server start command.App.tsx
using@react-navigation/native
.HomeScreen.tsx
for user authentication and display.AndroidManifest.xml
to include new intent filters.package.json
for compatibility.