-
Notifications
You must be signed in to change notification settings - Fork 3.7k
perf: remove draftTransactions collection subscriptions from expense creation flow #84601
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
Merged
marcaaron
merged 21 commits into
Expensify:main
from
callstack-internal:perf/remove-draft-transactions-collection-subscriptions
Mar 18, 2026
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
d466651
perf: remove draftTransactions collection subscriptions from expense …
BartekObudzinski 4340f8d
fix: remove unused imports from setupSentry
BartekObudzinski 36a691c
fix: add eslint-disable for pre-existing Onyx.connect and ref pattern…
BartekObudzinski 9eda1f7
Revert "fix: add eslint-disable for pre-existing Onyx.connect and ref…
BartekObudzinski 880cd54
Revert "fix: remove unused imports from setupSentry"
BartekObudzinski 027f30a
Merge remote-tracking branch 'upstream/main' into perf/remove-draft-t…
BartekObudzinski ce6f991
Merge remote-tracking branch 'upstream/main' into perf/remove-draft-t…
BartekObudzinski e97cf17
Merge remote-tracking branch 'upstream/main' into perf/remove-draft-t…
BartekObudzinski fa5e3b5
perf: reduce Onyx subscriptions during expense creation mount
BartekObudzinski 9a936b7
fix: update QuickActionNavigationTest for removed draftTransactions p…
BartekObudzinski f9fe4f4
fix: revert requestAnimationFrame on removeDraftTransactions
BartekObudzinski 78187ab
refactor: pass draftTransactionIDs instead of full collection to pres…
BartekObudzinski c855846
Merge remote-tracking branch 'upstream/main' into perf/remove-draft-t…
BartekObudzinski 20399ce
fix: restore pure Onyx subscriptions for violations and transaction d…
BartekObudzinski 6e33140
fix: revert AccessOrNotFoundWrapper report prop and restore report su…
BartekObudzinski b22d9d6
Merge remote-tracking branch 'upstream/main' into perf/remove-draft-t…
BartekObudzinski 6d70de1
Merge remote-tracking branch 'upstream/main' into perf/remove-draft-t…
BartekObudzinski 99bdc4f
fix: revert conditional useOnyx keys in useShowNotFoundPageInIOUStep
BartekObudzinski 29fe8ca
Merge branch 'main' of github.com:callstack-internal/Expensify-App in…
BartekObudzinski aff7b12
refactor: Import React alongside useMemo in useReceiptScanDrop hook
BartekObudzinski 3c28125
Merge remote-tracking branch 'upstream/main' into perf/remove-draft-t…
BartekObudzinski 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
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.
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.
This will need to be reverted
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.
Could you clarify what specifically needs reverting? The change here replaces the full
TRANSACTION_DRAFTcollection subscription with an IDs-only selector (validTransactionDraftIDsSelector), which avoids deserializing all draft transaction objects on every render. TheReactimport removal is safe since the project uses the automatic JSX runtime.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.
It was about the react import removal, because the app was crashing for me without it
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 thought it has been removed by mistake. Is it not crashing for you?
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.
Works fine on my end, but restoring it just to be safe
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.
@ShridharGoel