-
Notifications
You must be signed in to change notification settings - Fork 50
Linearize Send Flow #2764
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
Open
leofelix077
wants to merge
22
commits into
master
Choose a base branch
from
feature/linearize-send-flow
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Linearize Send Flow #2764
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
16ec2bc
add initial version of linearize send flow
leofelix077 b2246b5
fix input handling for decimal amounts
leofelix077 d151993
adjust layouting for send flow
leofelix077 119c0e8
rewrite sendpayment tests
leofelix077 309e590
fix UI according to figma design
leofelix077 e64eb2d
bring Ui in line with mobile
leofelix077 768acf9
fix amount formatting on base usd value
leofelix077 ba7d7cf
adjust navigation flows for send and collectible flows and add e2e tests
leofelix077 03e09be
keep recents on search and add debounce
leofelix077 4326a2c
preserve amounts between swap of fiat and token
leofelix077 2fec35e
update input validation and navigation on changes
leofelix077 87d6271
Merge branch 'master' into feature/linearize-send-flow
leofelix077 09fec92
fix debounce, unused strings and navigation flow for suggestions
leofelix077 cb9fc71
Merge branch 'feature/linearize-send-flow' of https://github.com/stel…
leofelix077 ae763e9
add tests for amount preservation toggle between fiat and token
leofelix077 bce720b
add tests for amount preservation toggle between fiat and token
leofelix077 7cdb65f
remove duplicated tests for memo editing context
leofelix077 41188cf
adjust e2e tests to new send flow and minor UI elements
leofelix077 c8c968f
adjust comments from agentic code review
leofelix077 d281820
update loading state for search
leofelix077 29c7d15
fix load account failing test
leofelix077 d11ef2f
wait for search to settle to allow continue
leofelix077 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
I notice we're using a lot of
test.slow(). Why is this necessary? This isn't necessarily wrong, but it does triple the time a test has to run (15s vs 45s). If a test fails, you'll have to wait 45s for it terminate.It's best to avoid this unless it's absolutely necessary to make sure our tests run and fail quickly