Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR introduces a dedicated Invite screen in the send flow, streamlining recipient selection and moving the “unknown address” warning to the Review step.
Changes:
- Replaces the inline “Send/Invite” button behavior with auto-navigation after recipient verification resolves (and routes unverified phone recipients to a new Invite screen).
- Adds a new
SendInvitescreen that launches the platform share sheet for invites. - Moves the “unknown address” informational warning from recipient selection to the Send confirmation (review) screen.
Reviewed changes
Copilot reviewed 13 out of 18 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| packages/wallet-stack/src/send/SendSelectRecipient.tsx | Auto-navigates on verification completion; routes unverified phone recipients to the new Invite screen; removes inline send/invite button + inline warning. |
| packages/wallet-stack/src/send/SendSelectRecipient.test.tsx | Updates unit tests to match tap-to-proceed behavior and Invite-screen navigation. |
| packages/wallet-stack/src/send/SendInvite.tsx | New Invite screen UI + share-sheet handling + analytics/error reporting. |
| packages/wallet-stack/src/send/SendInvite.test.tsx | Adds tests for share flow success/failure and title rendering. |
| packages/wallet-stack/src/send/SendConfirmation.tsx | Shows unknown-address warning on the review screen based on identity verification state. |
| packages/wallet-stack/src/send/SendConfirmation.test.tsx | Adds coverage for the moved unknown-address warning behavior. |
| packages/wallet-stack/src/navigator/types.tsx | Adds route params typing for Screens.SendInvite. |
| packages/wallet-stack/src/navigator/Screens.tsx | Registers SendInvite screen enum entry. |
| packages/wallet-stack/src/navigator/Navigator.tsx | Adds SendInvite to the send stack navigator. |
| packages/wallet-stack/src/images/Images.ts | Exposes the new invite modal image asset. |
| packages/wallet-stack/src/app/ErrorMessages.ts | Adds an error key for share-sheet failures. |
| packages/wallet-stack/locales/base/translation.json | Adds sendInvite translation strings. |
| packages/wallet-stack/src/images/assets/invite-modal*.png | Adds new invite illustration assets. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Send flow:
Invite screen
Unverified warning
Navigation
Before: user must tap "Continue"
Simulator.Screen.Recording.-.iPhone.17.Pro.Max.-.2026-04-16.at.15.20.18.mov
After: automatic navigation after validation
Simulator.Screen.Recording.-.iPhone.17.Pro.Max.-.2026-04-16.at.15.21.05.mov
Test plan
Backwards compatibility
Y
Network scalability
NA