Skip to content

decompose ReportScreen 7: extract rendering orchestrators#87245

Merged
rlinoz merged 11 commits intoExpensify:mainfrom
callstack-internal:decompose/report-screen-7
Apr 7, 2026
Merged

decompose ReportScreen 7: extract rendering orchestrators#87245
rlinoz merged 11 commits intoExpensify:mainfrom
callstack-internal:decompose/report-screen-7

Conversation

@adhorodyski
Copy link
Copy Markdown
Contributor

@adhorodyski adhorodyski commented Apr 7, 2026

Explanation of Change

This is the final PR in the 7-part ReportScreen decomposition series. It extracts the remaining rendering orchestrators out of ReportScreen:

  • ReportActionsList becomes a pure orchestrator: it no longer subscribes to Onyx itself — it receives only the props it needs and delegates rendering to its children.
  • MoneyRequestReportActionsList becomes self-subscribing: it owns its own Onyx connection for the isLoadingInitialReportActions / hasLoadingOnyxValue data it previously required the parent to pass down.

The net result: ReportScreen is slimmed down further and the subscription blast radius for list re-renders is scoped to the components that actually need that data.

Fixed Issues

$ #84895
PROPOSAL:

Tests

ReportHeader (variant selection + back button)

  1. Open a 1:1 DM — verify HeaderView renders with correct avatar and name
  2. Open an expense report (money request) — verify MoneyReportHeader renders with amount, status, and action buttons
  3. Open a transaction thread (click into a single expense) — verify MoneyRequestHeader renders with merchant/amount
  4. On each header type, tap the back button — verify it navigates back correctly
  5. Open a report from Search RHP — tap back — verify it returns to search results
  6. Verify the browser tab title updates to the report name when switching between reports (web only)
  7. Go offline, open a report with pending changes — verify the OfflineWithFeedback stripe appears on the header

ReportActionsList (skeleton / actions list / money request list)

  1. Open a report that's loading for the first time — verify skeleton shimmer displays, then transitions to the actions list
  2. Open an expense report with 2+ transactions — verify the table view (MoneyRequestReportActionsList) renders, not the chat view
  3. Open an expense report with exactly 1 transaction — verify the chat view (ReportActionsView) renders, not the table view
  4. Open a regular chat — verify ReportActionsView renders with messages
  5. Open an invoice report — verify the correct list variant renders

WideRHPReceiptPanel (wide layout receipt)

  1. On web wide screen, open Search > click an expense report with 1 transaction in the RHP — verify the receipt image renders in the left panel
  2. On web wide screen, open an expense report with 2+ transactions in the RHP — verify no receipt panel appears (table view takes over)
  3. Resize browser to narrow width — verify the receipt panel disappears

ReportDragAndDropProvider

  1. On web, drag a file over an active chat — verify the drop zone overlay appears
  2. Drop the file — verify the attachment upload flow triggers
  3. Open an archived report — drag a file over it — verify the drop zone does not activate

MoneyRequestReportActionsList (self-subscribing)

  1. Open an expense report with multiple transactions — verify all transactions render in the table
  2. Delete a transaction — verify it disappears from the list with pending state
  3. Scroll through a long expense report — verify older actions load on scroll
  4. Open an expense report from Search — verify it renders identically to opening from LHN

AgentZeroStatusProvider

  1. Open the Concierge chat — send a message — verify the thinking/processing indicator appears
  2. Open a regular chat — verify no Concierge processing indicator logic fires

General regression

  1. Navigate rapidly between 3-4 different report types — verify no crashes, blank screens, or stale headers
  2. Go offline → open a report → go online — verify actions load and the report updates
  3. Verify no JS console errors throughout all steps

Offline tests

N/A

QA Steps

Same as tests

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I used JaimeGPT to get English > Spanish translation. I then posted it in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If new assets were added or existing ones were modified, I verified that:
    • The assets are optimized and compressed (for SVG files, run npm run compress-svg)
    • The assets load correctly across all supported platforms.
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • I added unit tests for any new feature or bug fix in this PR to help automatically prevent regressions in this user flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Android: mWeb Chrome
iOS: Native
iOS: mWeb Safari
MacOS: Chrome / Safari

adhorodyski and others added 3 commits April 7, 2026 12:31
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…nsList orchestrator

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@adhorodyski adhorodyski changed the title perf: decompose ReportScreen — extract rendering orchestrators (PR 7/7) decompose ReportScreen 7: extract rendering orchestrators Apr 7, 2026
@adhorodyski
Copy link
Copy Markdown
Contributor Author

@codex review

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 2d4a5b9995

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

@adhorodyski adhorodyski marked this pull request as ready for review April 7, 2026 15:31
@adhorodyski adhorodyski requested review from a team as code owners April 7, 2026 15:31
@melvin-bot melvin-bot bot requested review from DylanDylann and joekaufmanexpensify and removed request for a team April 7, 2026 15:31
@melvin-bot
Copy link
Copy Markdown

melvin-bot bot commented Apr 7, 2026

@DylanDylann Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@melvin-bot melvin-bot bot removed the request for review from a team April 7, 2026 15:31
adhorodyski and others added 3 commits April 7, 2026 17:37
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…irectly

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 6159d07171

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".


const [report] = useOnyx(`${ONYXKEYS.COLLECTION.REPORT}${reportIDFromRoute}`);
const isReportArchived = useReportIsArchived(report?.reportID);
const isEditingDisabled = !canUserPerformWriteAction(report, isReportArchived);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is different than the old logic

    const {isEditingDisabled} = useIsReportReadyToDisplay(report, reportIDFromRoute, isReportArchived);

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

imo it is, I extracted this directly from useIsReportReadyToDisplay which imo hacks around the problem. Our current definition ensures the report is already there - and even if it were a problem (it isn't from the JSX tree), we're defensive for disabling the drag and drop.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, thanks. However, I still lean toward using useIsReportReadyToDisplay. I believe it will make the code easier to maintain since the logic is centralized in one place.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd be oposed to that given how it relies on false data really - this should be decoupled and report data should be simply guarded up the tree before being accessed.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Our current definition ensures the report is already there

when you say this do you mean we don't have to care about this problem anymore here?

report?.reportID?.toString() !== reportIDFromRoute;

Comment on lines +75 to +79
<OfflineWithFeedback
pendingAction={pendingAction}
errors={reportErrors}
shouldShowErrorMessages={false}
needsOffscreenAlphaCompositing
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

avoid duplicate OfflineWithFeedback wrapper, let's dry it

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is far more readable than any abstraction over this:

<OfflineWithFeedback
      pendingAction={pendingAction}
      errors={reportErrors}
      shouldShowErrorMessages={false}
      needsOffscreenAlphaCompositing
>

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It’s not a big problem, I’m fine with the current approach, but I personally prefer to keep it DRY 😄

cc @rlinoz for the second thought

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think something like this would look nicer, but either way is fine for me.

function ReportHeader() {
    <OfflineFeedback>
       <ReportHeaderContent/>
    </OfflineFeedback>
}

@DylanDylann
Copy link
Copy Markdown
Contributor

The rest looks fine

@DylanDylann
Copy link
Copy Markdown
Contributor

DylanDylann commented Apr 7, 2026

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified that the composer does not automatically focus or open the keyboard on mobile unless explicitly intended. This includes checking that returning the app from the background does not unexpectedly open the keyboard.
  • I verified tests pass on all platforms & I tested again on:
    • Android: HybridApp
    • Android: mWeb Chrome
    • iOS: HybridApp
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified there are no new alerts related to the canBeMissing param for useOnyx
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • For any bug fix or new feature in this PR, I verified that sufficient unit tests are included to prevent regressions in this flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: HybridApp
Screen.Recording.2026-04-08.at.00.00.59.mov
Android: mWeb Chrome
Screen.Recording.2026-04-07.at.23.59.07.mov
iOS: HybridApp
Screen.Recording.2026-04-08.at.00.04.18.mov
iOS: mWeb Safari
Screen.Recording.2026-04-08.at.00.00.25.mov
MacOS: Chrome / Safari
Screen.Recording.2026-04-07.at.23.56.35.mov

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@adhorodyski adhorodyski requested a review from DylanDylann April 7, 2026 16:39
@codecov
Copy link
Copy Markdown

codecov bot commented Apr 7, 2026

Codecov Report

✅ Changes either increased or maintained existing code coverage, great job!

Files with missing lines Coverage Δ
...equestReportView/MoneyRequestReportActionsList.tsx 60.11% <100.00%> (+4.23%) ⬆️
.../MoneyRequestReportView/MoneyRequestReportView.tsx 0.00% <ø> (ø)
src/pages/Search/SearchMoneyRequestReportPage.tsx 0.00% <ø> (ø)
src/pages/inbox/AgentZeroStatusContext.tsx 97.56% <100.00%> (+0.06%) ⬆️
src/pages/inbox/ReportDragAndDropProvider.tsx 100.00% <100.00%> (ø)
src/pages/inbox/ReportScreen.tsx 100.00% <100.00%> (+9.83%) ⬆️
src/selectors/Report.ts 18.18% <100.00%> (+18.18%) ⬆️
src/pages/inbox/ReportActionsList.tsx 80.00% <80.00%> (ø)
src/pages/inbox/ReportHeader.tsx 80.95% <80.95%> (ø)
src/pages/inbox/WideRHPReceiptPanel.tsx 50.00% <50.00%> (ø)
... and 15 files with indirect coverage changes

@DylanDylann
Copy link
Copy Markdown
Contributor

@adhorodyski I got crashed 💣💣💣💣 because of this problem

eferenceError: React is not defined
at WideRHPReceiptPanel (WideRHPReceiptPanel.tsx:91:1)
at Object.react_stack_bottom_frame (react-dom-client.development.js:25904:20)
at renderWithHooks (react-dom-client.development.js:7662:22)
at updateFunctionComponent (react-dom-client.development.js:10166:19)
at beginWork (react-dom-client.development.js:11778:18)
at runWithFiberInDEV (react-dom-client.development.js:872:30)
at performUnitOfWork (react-dom-client.development.js:17641:22)
at workLoopSync (react-dom-client.development.js:17469:41)
at renderRootSync (react-dom-client.development.js:17450:11)
at performWorkOnRoot (react-dom-client.development.js:16583:35)
at performSyncWorkOnRoot (react-dom-client.development.js:18972:7)
at flushSyncWorkAcrossRoots_impl (react-dom-client.development.js:18814:21)
at processRootScheduleInMicrotask (react-dom-client.development.js:18853:9)
at eval (react-dom-client.development.js:18991:13)
The above error occurred in the component.

Screenshot 2026-04-07 at 23 52 25

@DylanDylann
Copy link
Copy Markdown
Contributor

Adding import React from 'react'; works for me

@DylanDylann
Copy link
Copy Markdown
Contributor

As I recall, we can fix it in other ways

@adhorodyski
Copy link
Copy Markdown
Contributor Author

Oh I was not running into this one myself 😅 let me fix that, sorry.

Copy link
Copy Markdown
Contributor

@DylanDylann DylanDylann left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@melvin-bot melvin-bot bot requested a review from rlinoz April 7, 2026 17:07
const {reportActions: unfilteredReportActions, hasNewerActions, hasOlderActions} = usePaginatedReportActions(reportID, route?.params?.reportActionID);
const reportActions = useMemo(() => getFilteredReportActionsForReportView(unfilteredReportActions), [unfilteredReportActions]);

const allReportTransactions = useReportTransactionsCollection(reportIDProp);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should this be using reportID instead?


const [report] = useOnyx(`${ONYXKEYS.COLLECTION.REPORT}${reportIDFromRoute}`);
const isReportArchived = useReportIsArchived(report?.reportID);
const isEditingDisabled = !canUserPerformWriteAction(report, isReportArchived);
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Our current definition ensures the report is already there

when you say this do you mean we don't have to care about this problem anymore here?

report?.reportID?.toString() !== reportIDFromRoute;

Comment on lines +75 to +79
<OfflineWithFeedback
pendingAction={pendingAction}
errors={reportErrors}
shouldShowErrorMessages={false}
needsOffscreenAlphaCompositing
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think something like this would look nicer, but either way is fine for me.

function ReportHeader() {
    <OfflineFeedback>
       <ReportHeaderContent/>
    </OfflineFeedback>
}

@rlinoz rlinoz merged commit 23e3f83 into Expensify:main Apr 7, 2026
33 checks passed
@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Apr 7, 2026

🚧 @rlinoz has triggered a test Expensify/App build. You can view the workflow run here.

@OSBotify
Copy link
Copy Markdown
Contributor

OSBotify commented Apr 7, 2026

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@OSBotify
Copy link
Copy Markdown
Contributor

OSBotify commented Apr 8, 2026

🚀 Deployed to staging by https://github.com/rlinoz in version: 9.3.54-0 🚀

platform result
🕸 web 🕸 success ✅
🤖 android 🤖 success ✅
🍎 iOS 🍎 success ✅

Bundle Size Analysis (Sentry):

@MelvinBot
Copy link
Copy Markdown
Contributor

I reviewed all changes in this PR. This is a pure internal refactoring — it extracts rendering orchestrators (ReportHeader, ReportActionsList, WideRHPReceiptPanel, ReportDragAndDropProvider) out of ReportScreen into separate component files, and makes MoneyRequestReportActionsList self-subscribing.

No help site changes are required. There are no new features, no UI changes, no terminology changes, and no modifications to user-facing flows or settings. The help site docs under docs/articles remain accurate as-is.

@OSBotify
Copy link
Copy Markdown
Contributor

OSBotify commented Apr 9, 2026

🚀 Deployed to production by https://github.com/roryabraham in version: 9.3.54-7 🚀

platform result
🕸 web 🕸 success ✅
🤖 android 🤖 success ✅
🍎 iOS 🍎 success ✅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants