-
Notifications
You must be signed in to change notification settings - Fork 3k
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
fix: BUG: [distance] request confirmation offline doesn't show TBD #26836
Merged
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
9d9cc6f
- Implement map route re-fetch on going online
paultsimura 05908dd
Handle null waypoint coordinates correctly
paultsimura 7afdf80
Add hasRouteError check for route re-fetch
paultsimura 0b9596d
Make the shouldFetchRoute condition more readable
paultsimura af2c13f
Some refactoring
paultsimura 9ce8d13
Translation change
paultsimura 5dc1d8e
Formatting
paultsimura 6d4592f
Fix missing workspace rate
paultsimura 6d35789
Fix missing workspace distance rate
paultsimura 2687882
Merge branch 'main' into fix-26537
paultsimura 7078c52
Merge branch 'main' into fix-26537
paultsimura 6574808
Render map's BlockingView without text
paultsimura 6b0ecd3
Refactoring
paultsimura 034fb4e
Refactoring
paultsimura 7f24db2
Use lodashIsNil
paultsimura 02bfdac
Use lodashIsNil
paultsimura 3a139d4
Merge branch 'main' into fix-26537
paultsimura b0b2ea2
Add PendingMapView component
paultsimura 59d174c
Polish the distance merchant logic
paultsimura b0ec8ad
Refactor
paultsimura 29b3b9c
Increase icon dimensions
paultsimura b89f277
Merge branch 'main' into fix-26537
paultsimura 3ab3c0e
Use icon size variable
paultsimura 40585d5
Merge branch 'main' into fix-26537
paultsimura c3117fc
Hide "TBD" on the Request button
paultsimura 383f2dd
Fix useMemo deps
paultsimura d64b0f3
Merge branch 'main' into fix-26537
paultsimura 0644152
Change the request button text logic
paultsimura 9442b59
Merge branch 'main' into fix-26537
paultsimura 3c8d3a9
Remove redundant useNetwork
paultsimura e0bd72d
Revert "Remove redundant useNetwork"
paultsimura 764bc16
Revert distance rate fix
paultsimura 38014f7
Lint
paultsimura 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 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
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.
@paultsimura Is there any point at which we have a distance request utilizing
iou.splitAmount
, or could we just modify above to something likeif (props.receiptPath || isDistanceRequestWithoutRoute) {
?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.
You're right, at the moment the Distance request doesn't allow splitting the bill. Updated, ready for the final review.