-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Load map when image is not loaded in Money Request view for distance request #34133
Merged
Merged
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
dded634
test map when image is not loaded in request view
shubham1206agra 6d619cb
Merge branch 'main' into test-map
shubham1206agra ef26aaa
test changes
shubham1206agra 54a63d6
fix lint
shubham1206agra 46141e3
fix lint
shubham1206agra a06f144
Merge branch 'Expensify:main' into test-map
shubham1206agra 0d919bf
Merge branch 'Expensify:main' into test-map
shubham1206agra be5367f
ts fixes
shubham1206agra e255ec8
test fix
shubham1206agra 17cb86a
test fix attempt 2
shubham1206agra c7165dd
test fix attempt 3
shubham1206agra b0068d3
perf-test fix
shubham1206agra 365d379
perf-test fix attempt 2
shubham1206agra fb5a70e
perf-test fix attempt 3
shubham1206agra adb33f6
perf-test fix attempt 4
shubham1206agra 94c115a
fix lint
shubham1206agra e9ab6ce
Merge branch 'Expensify:main' into test-map
shubham1206agra 3d8adec
Merge branch 'main' into test-map
shubham1206agra 353bb6a
Merge branch 'main' into test-map
shubham1206agra 0555ddf
Merge branch 'Expensify:main' into test-map
shubham1206agra 18d755d
adjustment according to recommendation
shubham1206agra 3fe850f
merge main
shubham1206agra b8b9f4e
merge main
shubham1206agra fdd2b88
fix lint
shubham1206agra 262f9a3
merge main
shubham1206agra 58fd979
ts fix
shubham1206agra e371877
Merge branch 'main' into test-map
shubham1206agra 3021f36
Fix ts bug
shubham1206agra 1336664
Fix minor bug after merge
shubham1206agra 2f31293
Merge main
shubham1206agra 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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import {View} from 'react-native'; | ||
|
||
// eslint-disable-next-line @typescript-eslint/no-unused-vars, @typescript-eslint/no-explicit-any | ||
function ConfirmedRoute(props: any) { | ||
return <View />; | ||
} | ||
Comment on lines
+3
to
+6
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's the purpose of this empty view mock? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's just to pass the UI tests, as Mapbox seems to break the tests. |
||
|
||
export default ConfirmedRoute; |
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
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
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
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
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
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.
Coming from #40318, we should've prevented interactivity here to avoid the map being movable whilst still loading.