Skip to content

[WIP] perf: ContextMenu performance overhaul#83784

Open
roryabraham wants to merge 99 commits intomainfrom
rory-contextmenu-perf
Open

[WIP] perf: ContextMenu performance overhaul#83784
roryabraham wants to merge 99 commits intomainfrom
rory-contextmenu-perf

Conversation

@roryabraham
Copy link
Copy Markdown
Contributor

@roryabraham roryabraham commented Feb 28, 2026

Summary

Performance overhaul of the ContextMenu system. Converts per-row MiniReportActionContextMenu instances into a singleton rendered via @gorhom/portal, eliminating Onyx subscriptions and reducing the subtree size per visible report action.

Architecture changes

  • Singleton MiniReportActionContextMenu — One instance positioned absolutely over the hovered row, rather than one per row
  • Composition refactor — Replaces the 23-action config array monolith in ContextMenuActions.tsx with individual files under actions/, each self-contained with its own shouldShow predicate.
  • State consolidation — Removed several unnecessary props from the context menus. Replaces 7 useRef + 8 useState calls in PopoverReportActionContextMenu with a single PopoverContextMenuState object
  • Deferred subscriptions — Extracts delete confirmation into ConfirmDeleteReportActionModal via global modal system, so its ~16 Onyx subscriptions are only active when shown
  • React Compiler compliance — Makes all components compile with React Compiler and removes manual memo/useMemo/useCallback wrappers

Performance results

Compared via React Profiler traces on the same account with similar interaction patterns (~9K PureReportActionItem renders each, ~5s sessions):

Overall:

Metric Main Branch Change
Total renders 188,446 161,579 -14.3%
Total render time 5,223ms 4,838ms -7.4%

Context menu components:

Metric Main Branch Change
Context menu renders 28,295 814 -97%
Context menu render time 446ms 15ms -97%
% of total render budget 8.55% 0.30%

Non-context-menu render time is mostly flat (4,777ms → 4,823ms).

For context, the original profile that motivated this work (#83774) showed context menu components at 6.6% of total render time.

Fixed Issues

#83774

Tests

Mini context menu (web — singleton behavior)

  1. Hover over a message — mini context menu appears
  2. Move to a different message — menu repositions
  3. Hover over the mini menu itself — stays visible
  4. Move mouse away — hides
  5. Hover out through rounded corners — no flash
  6. Scroll the list — menu hides immediately

Full context menu (web right-click, mobile long-press)

  1. Right-click → full menu appears with correct actions
  2. Reply in thread, Mark as unread, Copy link, Copy message, Pin/Unpin, Download — all work
  3. Arrow key navigation between items

Delete action

  1. Right-click own message → Delete → confirmation modal appears
  2. Confirm → message deleted; Cancel → message preserved

Delete action does not crash (regression fix)

  1. Navigate to any chat with your own messages
  2. Right-click a message you sent
  3. Click Delete
  4. Expected: The "Delete comment" confirmation modal appears with Delete and Cancel buttons
  5. Failure case: A JS crash (React is not defined) instead of the confirmation modal

Reply in Thread hides mini menu (regression fix)

  1. Navigate to any chat with messages
  2. Hover over a message so the mini context menu appears
  3. Click Reply in thread in the mini menu
  4. Expected: You navigate to the thread view and the mini context menu is no longer visible
  5. Failure case: The mini context menu remains visible on the thread page (detached from its original position)

First hover after Reply in Thread shows mini menu (regression fix)

  1. Navigate to any chat with messages
  2. Hover over a message so the mini context menu appears
  3. Click Reply in thread in the mini menu
  4. On the thread page, hover over the message
  5. Expected: The mini context menu appears over the message on first hover
  6. Failure case: The mini context menu doesn't appear on first hover; it only appears if the user hovers out and back in

Tab keyboard navigation focuses mini context menu (regression fix)

  1. Navigate to any chat with messages
  2. Hover over a message so the mini context menu appears
  3. Press Tab
  4. Expected: Focus moves to the first button in the mini context menu (emoji reaction). Pressing Tab again cycles through the remaining mini menu buttons. Pressing Shift+Tab from the first mini menu button returns focus to the report action row.
  5. Failure case: Tab skips the mini context menu entirely and focuses the composer or another element further down in the DOM.

Emoji reactions (mini menu)

  1. Click emoji in mini menu → reaction added
  2. Open emoji picker from mini menu → picker opens

Edit action

  1. Right-click own message → Edit → compose box prefilled → save updates message

Overflow menu

  1. Hover message with many actions → 4 items in mini menu including "..."
  2. Click "..." → full context menu opens

Offline tests

N/A — context menus are UI-only

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 verified there are no new alerts related to the canBeMissing param for useOnyx
  • 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.
  • I verified that similar component doesn't exist in the codebase
  • I verified that all props are defined accurately and each prop has a /** comment above it */
  • I verified that each file is named correctly
  • I verified that each component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
  • I verified that the only data being stored in component state is data necessary for rendering and nothing else
  • In component if we are not using the full Onyx data that we loaded, I've added the proper selector in order to ensure the component only re-renders when the data it is using changes
  • 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)
  • I verified that component 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)
  • I verified that all JSX used for rendering exists in the render method
  • I verified that each 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

Screenshots/Videos

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

Replace 7 refs + 8 useState calls with a single PopoverContextMenuState
object. Keep separate isPopoverVisible boolean for animation control:
hideContextMenu sets isPopoverVisible=false (triggering animation),
onModalHide clears menuState=null (clearing data after animation).

Consolidate popoverAnchorPosition + contextMenuDimensions into
PopoverPosition within the state object.

Eliminate reportActionRef entirely (latent staleness bug -- only set in
showDeleteModal, never in showContextMenu). Store only reportActionID in
consolidated state. Derive full action from reportActions[reportActionID].

Move onEmojiPickerToggle from ref to state to avoid accessing refs
during render. Remove all useCallback wrappers and inline the logic.

Made-with: Cursor
…nContextMenu

Remove memo(deepEqual) wrapper and all useMemo calls (5 total).
React Compiler handles memoization automatically. Replace inline
{current: null} with stable nullRef to avoid new object creation
per render. Inline all computed values directly.

Made-with: Cursor
Extract delete confirmation flow from PopoverReportActionContextMenu
into a standalone ConfirmDeleteReportActionModal component that mounts
via the established global modal system (useModal/ModalProvider).

The new component owns all ~16 delete-related Onyx subscriptions,
which are only active when the delete modal is actually shown. This
eliminates 5 duplicate subscriptions with BaseReportActionContextMenu
and defers the remaining ~11 until actually needed.

The promise-based API replaces 3 callback refs + 2 state vars from
PopoverReportActionContextMenu. The shouldSetModalVisibility parameter
is dropped as the global modal system manages visibility independently.

Made-with: Cursor
@codecov
Copy link
Copy Markdown

codecov Bot commented Feb 28, 2026

Codecov Report

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

Files with missing lines Coverage Δ
src/CONST/index.ts 92.30% <ø> (ø)
src/GlobalModals.tsx 100.00% <ø> (ø)
src/components/ContextMenuItem.tsx 88.23% <ø> (+88.23%) ⬆️
src/components/LHNOptionsList/OptionRowLHN.tsx 80.72% <ø> (ø)
src/components/ShowContextMenuContext/index.tsx 75.00% <100.00%> (ø)
src/libs/actions/Report/index.ts 68.69% <100.00%> (ø)
src/pages/inbox/ReportScreen.tsx 100.00% <100.00%> (ø)
...tMenu/MiniReportActionContextMenu/index.native.tsx 100.00% <100.00%> (ø)
...ntextMenu/actions/CopyLinkAction/copyLinkAction.ts 100.00% <100.00%> (ø)
...ntextMenu/actions/DownloadAction/downloadAction.ts 100.00% <100.00%> (ø)
... and 62 more
... and 46 files with indirect coverage changes

Create MiniContextMenuProvider with split contexts (Actions/State) to
avoid unnecessary re-renders in list items. The provider manages
show/hide with 120ms delay, shouldKeepOpen/pendingHide for emoji
picker flow, and stable action references via useState lazy init.

Rewrite MiniReportActionContextMenu as an animated singleton rendered
via createPortal to document.body for reliable position:fixed. Uses
Reanimated shared values for animated row-to-row slides with overshoot
easing, and CSS transitions for opacity fade.

PureReportActionItem now measures its row via getBoundingClientRect on
hover and calls showMiniContextMenu instead of rendering its own
MiniReportActionContextMenu instance. This eliminates ~1100 Onyx
subscriptions (24 per visible item).

Made-with: Cursor
In mini mode, BaseReportActionContextMenu now uses the provider's
keepOpen()/release() API for emoji picker and overflow menu flows.
Non-mini (popover) mode retains local state. This ensures the
singleton stays visible when submenus are open.

Made-with: Cursor
Add a scroll event listener (capture phase) to dismiss the mini
context menu when the list scrolls. The menu reappears at the
correct position on the next hover via fresh getBoundingClientRect.

Made-with: Cursor
Add ContextMenuPayloadProvider (shared context for all action
components), ContextMenuLayout (visibility evaluation, mini-mode
truncation, arrow key focus), and actionConfig (shouldShow registry
with ordered action IDs). Foundation for converting the config
array into individual dot-notation components.

Made-with: Cursor
Replace the config array .filter().map() loop in
BaseReportActionContextMenu with ContextMenuPayloadProvider,
ContextMenuLayout, and individual dot-notation action components.

Convert disabledActions (ContextMenuAction[]) to disabledActionIds
(Set<string>) throughout the chain: PopoverReportActionContextMenu,
MiniContextMenuProvider, ReportActionContextMenu, PureReportActionItem.

Use Reanimated .get()/.set() API for shared values. Fix import alias
in actionConfig.

Made-with: Cursor
Organize component internals: hooks, derived values, callbacks,
effects, render. Fix deprecated getReportNameDeprecated usage
(add eslint-disable), fix no-default-id-values errors in Debug,
Delete, and Explain. Use Reanimated .get()/.set() API. Fix import
aliases for @pages prefix. Clean up unused imports. Reduce lint
warning budget from 383 to 353 (30 warnings eliminated).

Made-with: Cursor
@melvin-bot
Copy link
Copy Markdown

melvin-bot Bot commented Feb 28, 2026

npm has a package.json file and a package-lock.json file. It seems you updated one without the other, which is usually a sign of a mistake. If you are updating a package make sure that you update the version in package.json then run npm install

@roryabraham

This comment has been minimized.

chatgpt-codex-connector[bot]

This comment was marked as resolved.

Wire hideDeleteModal to call modalContext.closeModal() so the
delete confirmation modal is dismissed when a report action item
unmounts while the modal is open (e.g., navigating away).

Made-with: Cursor
@roryabraham

This comment has been minimized.

chatgpt-codex-connector[bot]

This comment was marked as resolved.

When the delete target is a money request, the effectiveReportID can
be the IOU report ID, but the action lives in the chat report's
REPORT_ACTIONS collection. Pass actionSourceReportID to the modal
and fall back to it when the action isn't found in the primary collection.

Made-with: Cursor
The positioning useEffect had no dependency array, causing it to run
after every render. Scope it to state changes so animations only
trigger when row measurements or visibility actually change.

Made-with: Cursor
@roryabraham

This comment has been minimized.

chatgpt-codex-connector[bot]

This comment was marked as resolved.

In mini-menu flows the popover menuState is unset, so deriving the
source report from menuState?.reportID yields undefined. Pass the
source report ID explicitly from Delete.tsx through the showDeleteModal
interface so the modal can always resolve the action.

Also guard hideDeleteModal with a ref so it only closes the modal
when showDeleteModal actually opened one, preventing unrelated
modals from being dismissed during navigation/unmount cleanup.

Made-with: Cursor
@roryabraham

This comment has been minimized.

chatgpt-codex-connector[bot]

This comment was marked as resolved.

The scroll handler repeatedly called hideMiniContextMenu() which uses
a 120ms debounced timer, causing the menu to stay visible while
scrolling. Add an {immediate: true} option to bypass the timer for
scroll-triggered hides.

Made-with: Cursor
@roryabraham

This comment has been minimized.

chatgpt-codex-connector[bot]

This comment was marked as resolved.

The old code passed filteredContextMenuActions as disabledOptions when
opening the overflow popover, hiding actions already visible in the
mini row. Restore this behavior by passing the current visibleActionIds
from ContextMenuLayout as disabledActionIds to the overflow menu.

Made-with: Cursor
@roryabraham

This comment has been minimized.

chatgpt-codex-connector[bot]

This comment was marked as resolved.

The file uses JSX but only imported named exports from 'react',
causing "React is not defined" crash when opening the delete
confirmation modal.

Made-with: Cursor
@roryabraham roryabraham changed the title perf: ContextMenu performance overhaul [WIP] perf: ContextMenu performance overhaul Apr 15, 2026
hideAndRun only called release() but never initiated a hide, so the
menu stayed visible. When navigating to a thread the old ReportScreen
stays mounted and its Portal content leaked into the new screen's
PortalHost.

Two fixes:
- hideAndRun now calls hideMiniContextMenu() after release()
- Return null when !isVisible so no Portal content exists to leak

Made-with: Cursor
Made-with: Cursor

# Conflicts (all resolved):
#   BaseReportActionContextMenu.tsx - deleted (currentUserAccountID ported to holdAction/unholdAction)
#   ContextMenuActions.tsx - deleted (hold/unhold currentUserAccountID, REIMBURSED copy, flag-as-offensive dynamic routes, UPDATE_DESCRIPTION setClipboardMessage ported to individual action files)
#   PopoverReportActionContextMenu.tsx - deleted (currentUserEmail ported to ConfirmDeleteReportActionModal)
#   PureReportActionItem.tsx - kept our MiniContextMenuProvider import, added main's new actionContents imports
@roryabraham
Copy link
Copy Markdown
Contributor Author

going to start resolving bug reports as they are fixed. Will also be updating the PR description to add testing steps specific to each bug report.

…fter Portal mount

When isVisible transitions from false to true, the @gorhom/portal library
inserts content asynchronously via a state update in the PortalHost. The
existing useLayoutEffect fires before the Portal content is in the DOM, so
overlayRef.current is null and containerRect is never set — leaving the
menu at opacity: 0.

A callback ref fires exactly when the DOM element is attached, regardless
of Portal timing. The useLayoutEffect is kept for subsequent rowMeasurements
changes when the element is already mounted.

Made-with: Cursor
When a component mounts under a stationary cursor (e.g. after navigation),
mouseenter doesn't fire because the cursor didn't physically enter the
element. Add a useEffect that checks element.matches(':hover') on mount
to handle this case. The same :hover technique is already used in the
scroll handler within the same file.

Made-with: Cursor
@roryabraham
Copy link
Copy Markdown
Contributor Author

roryabraham commented Apr 15, 2026

QUESTION: Menu options look different between this branch and staging. Did we change them?

No changes to menu options were intentional. I'll look into them but if you can call out specifically what's different that would be helpful

The mini context menu is now rendered via a Portal, placing it at the
end of the DOM order. This broke keyboard navigation since Tab from a
hovered report action would skip the menu entirely.

Bridge focus by intercepting Tab/Shift+Tab between the row and the
Portal-rendered menu container via keydown listeners.

Made-with: Cursor
Made-with: Cursor

# Conflicts:
#	src/pages/inbox/report/ContextMenu/ContextMenuActions.tsx
Adds a jest UI test that renders PopoverReportActionContent and
PopoverReportContent against seeded Onyx data and asserts the resulting
items appear in the expected sequence (keyed off sentryLabel, already
present on every item). The ordering is intentionally hardcoded in the
test file so any accidental reshuffling — from the composition refactor
or future edits — trips the assertion.

Scenarios covered:
- Plain comment by another user (Join thread appears because the current
  user is not subscribed to the thread).
- Current user's own comment (Edit and Delete appear; Leave thread
  appears because the creator is auto-subscribed).
- No reportAction supplied (only the overflow Menu is rendered).
- Report-level menu on a read, unpinned chat (Mark as unread + Pin).
- Report-level menu on an unread, pinned chat (Mark as read + Unpin).

Made-with: Cursor
- ActiveHoverable: use early return in the :hover-on-mount effect to
  satisfy rulesdir/prefer-early-return.
- MiniReportActionContextMenu: depend on the anchor RefObject itself
  instead of anchor?.current, avoiding ref access during render. Swap
  the react-hooks/exhaustive-deps disable (which made React Compiler
  skip the component) for prefer-narrow-hook-dependencies.
- ConfirmDeleteReportActionModal: update reportActionsRef inside a
  useEffect instead of during render.
- ContextMenuOrderingTest: stop importing the deprecated
  ReactTestInstance type from react-test-renderer; infer from
  @testing-library/react-native's RenderResult instead.

Made-with: Cursor
showMiniContextMenu() set shouldKeepOpenRef=true to guard against the
row→menu hover transition, but the only release path was the menu's own
onHoverOut. When the cursor moved from the row straight to outside (the
common case), hideMiniContextMenu() always deferred, release() never
ran, and the menu stayed visible indefinitely. The stuck isVisible=true
also blocked onMenuHide from firing, so PureReportActionItem's
isContextMenuActive state couldn't clear, keeping the row highlighted.

Replace the keep-open-on-show guard with a cancellable setTimeout:

- hideMiniContextMenu() schedules the actual hide after an 80ms grace
  period so the menu's own onHoverIn has a chance to cancel it via
  keepOpen() during the row→menu transition.
- showMiniContextMenu() cancels any pending hide, so rapid row-to-row
  hovers keep the menu visible.
- keepOpen/release remain as an explicit lock for sub-interactions
  (overflow popover, emoji picker) that need the menu pinned regardless
  of hover state.

Fixes three linked regressions reported on the PR:
- reaction bar stays visible after the cursor leaves the row,
- the row's highlighted state never clears (both instances).

Made-with: Cursor
The global scroll listener used capture-phase window subscription and
hid the menu for every scroll event. Horizontal-scrolling descendants of
the row — notably the expense carousel inside a report preview — would
bubble scroll events up and kick off an unwanted hide mid-swipe. On
main this wasn't an issue because each row rendered its own menu
inside its subtree.

Skip scrolls whose target is contained by the anchor element. Only
ancestor scrolls (the chat list itself) move the row, so only those
need to dismiss the menu.

Made-with: Cursor
The listener-attach useEffect depended on a ref populated by a callback
ref on the menu's container View. @gorhom/portal mounts that View
asynchronously via a state update in the PortalHost, so by the time our
effect ran, localMenuContainerRef.current was still null and the blur/
Shift+Tab listeners never bound. Tab still worked because the handler
lives on the (non-Portal) report action row, but Shift+Tab fell back to
the browser default and focused the previous element in DOM order
instead of returning to the row.

Track the container as state (in addition to a ref for cases where a
stale closure would be fine). Setting state in the callback ref triggers
a re-render after the Portal commit, which re-runs the effect with the
now-attached element so the listeners bind correctly.

Made-with: Cursor
@roryabraham
Copy link
Copy Markdown
Contributor Author

@huult this is ready for more testing

@huult
Copy link
Copy Markdown
Contributor

huult commented Apr 20, 2026

Screenshot 2026-04-20 at 09 23 39
Screen.Recording.2026-04-20.at.09.25.52.mov

The emoji reaction still persists when opening the thread message (Bug not resovled).

@huult
Copy link
Copy Markdown
Contributor

huult commented Apr 20, 2026

Screen.Recording.2026-04-20.at.09.31.04.mov
Screen.Recording.2026-04-20.at.09.31.44.mov

Highlighted message does not unhighlight when out of focus (Bug not resovled).

@huult
Copy link
Copy Markdown
Contributor

huult commented Apr 20, 2026

Screen.Recording.2026-04-20.at.09.35.28.mov

Different behavior from staging when opening the options modal

@huult
Copy link
Copy Markdown
Contributor

huult commented Apr 20, 2026

@roryabraham Could you check the bugs above?

@huult
Copy link
Copy Markdown
Contributor

huult commented Apr 24, 2026

@roryabraham please tag me when this PR is ready for review again. Thank you!

@huult
Copy link
Copy Markdown
Contributor

huult commented May 2, 2026

@roryabraham Please resolve the conflict.

@huult
Copy link
Copy Markdown
Contributor

huult commented May 6, 2026

@roryabraham How’s this PR going?

@roryabraham
Copy link
Copy Markdown
Contributor Author

Hi @huult, sorry for the delay. I think I'm going to pick this PR back up, but this time try to break it up into smaller pieces that are easier to land individually. For context, the last few days I've been focusing on #89424, which is somewhat related to this

@huult
Copy link
Copy Markdown
Contributor

huult commented May 6, 2026

@roryabraham Thanks for the update.

@roryabraham
Copy link
Copy Markdown
Contributor Author

Created #89683

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.

3 participants