Skip to content

Fix APP-B2Q (1/3): don't throw in clearComposer when composer ref is not set#94617

Merged
mountiny merged 3 commits into
mainfrom
claude-fixComposerClearThrow
Jun 29, 2026
Merged

Fix APP-B2Q (1/3): don't throw in clearComposer when composer ref is not set#94617
mountiny merged 3 commits into
mainfrom
claude-fixComposerClearThrow

Conversation

@MelvinBot

@MelvinBot MelvinBot commented Jun 25, 2026

Copy link
Copy Markdown
Contributor

Explanation of Change

This is 1 of 3 independent fixes for the JS throws bucketed under Sentry APP-B2Q (#93845). It addresses error #1: The composerRef.clearWorklet function is not set yet.

clearComposer() read composerRef.current?.clearWorklet and threw when composerRef.current was null. The provider resets composerRef to null on unmount, so a request to clear while the composer is unmounted/remounting — navigating away right after sending, or a react-native-screens freeze/unfreeze where the ref hasn't re-attached yet — hit the null ref and threw a JSError that propagated across the JSI bridge.

On the attachment-send path, clearComposer is not cosmetic — it is the trigger for the actual send: clearWorklet runs the native input clear, whose onClear handler calls validateAndSubmitDraftaddAttachmentWithComment. There is no independent send path, so simply returning early when the ref is missing would stop the crash but silently drop the user's attachment.

The fix therefore retries instead of throwing or dropping the submit. clearComposer now polls composerRef.current?.clearWorklet on each animation frame, waiting for the frozen RNSScreen to unfreeze and re-attach the ref, then fires the real clear/send. The retries are bounded by CONST.COMPOSER.CLEAR_WORKLET_MAX_RETRIES (60 frames ≈ 1s) so we never loop forever if the composer is genuinely gone, in which case it falls back to Log.hmmm. On the normal text-send path the ref is already present, so the clear fires on the first attempt and behavior is unchanged.

Fixed Issues

$ #93845
PROPOSAL: #94617 (comment)

Note: this PR only addresses error #1 of APP-B2Q. Errors #3 and #4 are handled in separate PRs; error #2 is a native react-native-reanimated issue tracked separately.

Tests

  1. Launch the app and log in.
  2. Open any chat report.
  3. Tap inside the composer and type a short message so the composer gains focus.
  4. Send the message and confirm it appears in the chat.
  5. Background the app (go to the device Home screen).
  6. Wait ~30–60 seconds.
  7. Reopen the app and return to the same chat report.
  8. Tap the + (compose menu).
  9. Tap Add attachment.
  10. Select an image from the photo library.
  11. On the attachment preview screen, tap Send.
  12. Verify: the app does not crash.
  13. Verify: it navigates back to the chat report.
  14. Verify: the attachment is sent and appears in the chat.

Offline tests

N/A.

QA Steps

Same as the Test steps above.

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 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)
  • 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)
  • 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.
  • 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

Co-authored-by: ahmedGaber93 <ahmedGaber93@users.noreply.github.com>
@MelvinBot MelvinBot requested a review from a team June 25, 2026 19:57
@MelvinBot

Copy link
Copy Markdown
Contributor Author

I created this PR from an upstream branch since I don't have push access to your fork.

To take ownership of this branch and be able to push updates, run:

git remote add upstream https://github.com/Expensify/App.git
git fetch upstream claude-fixComposerClearThrow
git checkout -b claude-fixComposerClearThrow upstream/claude-fixComposerClearThrow
git push -u origin claude-fixComposerClearThrow

Then you can close this PR and open a new one from your fork.

@codecov

codecov Bot commented Jun 25, 2026

Copy link
Copy Markdown

Codecov Report

❌ Looks like you've decreased code coverage for some files. Please write tests to increase, or at least maintain, the existing level of code coverage. See our documentation here for how to interpret this table.

Files with missing lines Coverage Δ
src/CONST/index.ts 94.07% <ø> (-0.05%) ⬇️
...ox/report/ReportActionCompose/ComposerProvider.tsx 88.88% <0.00%> (-6.03%) ⬇️
... and 112 files with indirect coverage changes

@ahmedGaber93

ahmedGaber93 commented Jun 26, 2026

Copy link
Copy Markdown
Contributor

I’ve debugged the sentry event locally, and here’s the result.

breadcrumbs map

Time (UTC) Event
02:23:34.730 App goes to background
02:24:35.487 App returns to foreground (ReconnectApp/OpenReport run)
02:24:38.166 + compose popover opens
02:24:40.486 Attachment options modal opens
02:24:44.539 Native PHPickerViewController (Photos) opens
02:24:47.124 Image picked → navigate Report → ReportAddAttachment
02:24:47.943 Picked .png (~588 KB) loads into the preview
02:24:48.669 Tap Send in the ReportAddAttachment header
02:24:48.769 Navigate ReportAddAttachment → Report (modal closing)
02:24:48.871 FATALError: The composerRef.clearWorklet function is not set yet. This should never happen, and indicates a developer error.
02:24:48.000 Surfaces natively as C++ Exception N8facebook3jsi7JSErrorE: (null)

Root cause

Pressing Send runs submitAndCloserequestAnimationFrame(onConfirm)addAttachmentclearComposer().

clearComposer() calls composerRef.current?.clearWorklet, but at that instant navigation is tearing down ReportAddAttachment and bringing the Report screen back. The Report screen's composer is an RNSScreen that was frozen by react-native-screens while the attachment screen was on top, so its imperative handle (clearWorklet, backed by a Reanimated useAnimatedRef) hasn't re-attached yet. clearWorklet is therefore undefined, and the old code does:

throw new Error('The composerRef.clearWorklet function is not set yet. This should never happen, and indicates a developer error.');

The throw is uncaught inside the requestAnimationFrame callback during the navigation transition. The 02:24:48.769 "Navigation to Report" breadcrumb landing immediately before the crash at .871 is the smoking gun: the clear fires mid-transition, before the target screen's refs exist.

Proposed solution

The fix should both stop the crash and avoid silently dropping the attachment in the residual window where the composer ref hasn't re-attached yet.

clearComposer is the trigger for the actual send on the attachment path (clearComposerclearWorklet → native input.clear() → composer onClearvalidateAndSubmitDraftaddAttachmentWithComment). So a plain return when the ref is missing prevents the crash but also skips the send. Instead of giving up immediately, retry on the next frame(s) until the frozen RNSScreen unfreezes and re-mounts the ref, with a small bound so we never loop forever if the composer is genuinely gone:

code example:

const clearComposer = () => {
    const tryClear = (attemptsLeft: number) => {
        const clearWorklet = composerRef.current?.clearWorklet;
        if (clearWorklet) {
            scheduleOnUI(clearWorklet);
            return;
        }

        // The composer lives on an RNSScreen that gets frozen by react-native-screens while another screen
        // (e.g. ReportAddAttachment) is on top. When we clear right after navigating back, the ref may not have
        // re-attached yet. Retry on the next frame instead of throwing/dropping the submit, but bound the retries
        // so we never loop forever if the composer is truly unmounted.
        if (attemptsLeft <= 0) {
            Log.hmmm('[ComposerProvider] Skipping clearComposer because composerRef.clearWorklet never re-attached');
            return;
        }
        requestAnimationFrame(() => tryClear(attemptsLeft - 1));
    };

    tryClear(CONST.COMPOSER.CLEAR_WORKLET_MAX_RETRIES);
};

@ahmedGaber93

Copy link
Copy Markdown
Contributor

@MelvinBot Can you honst compare this proposal #94617 (comment) with your proposal and implement the better one.

Co-authored-by: ahmedGaber93 <ahmedGaber93@users.noreply.github.com>
@MelvinBot

Copy link
Copy Markdown
Contributor Author

Honest comparison — and I implemented yours

Short version: your proposal is better, so I replaced mine with it. Pushed in a72a078.

The deciding factor: my fix had a silent data-loss bug

I traced the attachment-send path end to end, and your core claim is correct. On the attachment path, clearComposer isn't cosmetic — it is the send trigger:

addAttachment sets attachmentFileRef.current then calls clearComposerclearWorklet → native input.clear() → composer onClearvalidateAndSubmitDraftaddAttachmentWithComment.

There is no independent send pathaddAttachment only sets the ref and calls clearComposer; nothing else dispatches the attachment.

Call-chain evidence (file:line)

That's the problem with my original fix: it returned early when the ref was missing — which is exactly the moment the crash happens (react-native-screens freeze right after navigating back). So it would have stopped the crash but silently dropped the user's attachment in the same scenario. My PR body even claimed "skipping the clear loses nothing because the draft is cleared via Onyx" — that reasoning is wrong on the attachment path, where the clear is what performs the send.

Why retry beats both alternatives

Approach Stops crash Keeps the attachment
Old code (throw) ✅ (but crashes)
My fix (early return) silently dropped
Your fix (bounded retry)

The retry waits for the frozen RNSScreen to unfreeze and re-attach the ref, then fires the real clear/send; the bound prevents an infinite loop if the composer is genuinely gone. On the normal text-send path the ref is present, so it fires on the first attempt — behavior is unchanged there.

What I changed

Lint, prettier, and typecheck pass. The PR body's explanation still describes the old approach — I left that for the human co-author to refresh when filling in the test steps.

Note: I'm an AI bot 🤖 — please sanity-check the retry bound and that the unfreeze actually re-attaches the ref within it on a real device before merging.

@ahmedGaber93

Copy link
Copy Markdown
Contributor

@MelvinBot please update:

Explanation of Change

Please update it to describe the last fix

Tests

  1. Launch the app and log in.
  2. Open any chat report.
  3. Tap inside the composer and type a short message so the composer gains focus.
  4. Send the message and confirm it appears in the chat.
  5. Background the app (go to the device Home screen).
  6. Wait ~30–60 seconds.
  7. Reopen the app and return to the same chat report.
  8. Tap the + (compose menu).
  9. Tap Add attachment.
  10. Select a image from the photo library.
  11. On the attachment preview screen, tap Send.
  12. Verify: the app does not crash.
  13. Verify: it navigates back to the chat report.
  14. Verify: the attachment is sent and appears in the chat.

Offline tests

N/A.

QA Steps

Same as Test step

PR Author Checklist

Please mark all checklist items as checked

@ahmedGaber93

Copy link
Copy Markdown
Contributor

@MelvinBot Please mark this PR as ready for review

@MelvinBot MelvinBot marked this pull request as ready for review June 26, 2026 13:11
@MelvinBot MelvinBot requested a review from a team as a code owner June 26, 2026 13:11
@melvin-bot melvin-bot Bot requested review from ahmedGaber93 and removed request for a team June 26, 2026 13:11
@melvin-bot

melvin-bot Bot commented Jun 26, 2026

Copy link
Copy Markdown

@ahmedGaber93 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]

@MelvinBot

Copy link
Copy Markdown
Contributor Author

🤖 Marked this PR as ready for review per ahmedGaber93's request.

Heads up: the Tests / QA Steps sections in the PR body are still the template TODOs — those need a human co-author to fill in before review.

@melvin-bot melvin-bot Bot requested review from heyjennahay and removed request for a team June 26, 2026 13:11
@ahmedGaber93

ahmedGaber93 commented Jun 26, 2026

Copy link
Copy Markdown
Contributor

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
  • 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 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 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)
  • 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)
  • 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.
  • 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-06-26.at.4.39.04.PM.mov
Android: mWeb Chrome
iOS: HybridApp
Screen.Recording.2026-06-26.at.4.06.36.PM.mov
iOS: mWeb Safari
MacOS: Chrome / Safari
Screen.Recording.2026-06-26.at.3.30.41.PM.mov

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

Copy link
Copy Markdown

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: a72a078c25

ℹ️ 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".

Comment on lines +129 to +131
if (attemptsLeft <= 0) {
Log.hmmm('[ComposerProvider] Skipping clearComposer because composerRef.clearWorklet never re-attached');
return;

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Clear pending attachment when retries give up

When this fallback is reached after useAttachmentPicker.addAttachment has already stored a file in attachmentFileRef.current, the pending file is left in the provider even though the send was skipped. If the composer reattaches after the 60-frame window or the user later sends another message in the same mounted provider, validateAndSubmitDraft prioritizes attachmentFileRef.current and will send that stale attachment with the next draft. Please clear or otherwise fail the pending attachment state when abandoning the retry.

Useful? React with 👍 / 👎.

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.

@MelvinBot address this

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.

@MelvinBot Please address this comment #94617 (comment)

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.

@MelvinBot Please implement this change

if (attemptsLeft <= 0) {
    // We never got the composer back, so the attachment can't be sent. Drop the pending file so a
    // future send in this same provider doesn't piggyback the stale attachment onto an unrelated message.
    attachmentFileRef.current = null;
    Log.hmmm('[ComposerProvider] Skipping clearComposer because composerRef.clearWorklet never re-attached');
    return;
}

@MelvinBot

Copy link
Copy Markdown
Contributor Author

🤖 Done — the PR body now reflects your request:

  • Explanation of Change rewritten to describe the current fix (bounded per-frame retry of composerRef.current?.clearWorklet so the attachment send isn't dropped while the RNSScreen is unfreezing, capped by CONST.COMPOSER.CLEAR_WORKLET_MAX_RETRIES with a Log.hmmm fallback).
  • Tests set to your 14 steps (background → reopen → add attachment → Send → no crash, navigates back, attachment appears).
  • Offline tests: N/A.
  • QA Steps: same as the Test steps.
  • PR Author Checklist: all items checked.

Co-authored-by: ahmedGaber93 <ahmedGaber93@users.noreply.github.com>
@MelvinBot MelvinBot requested a review from a team as a code owner June 26, 2026 14:39
@melvin-bot melvin-bot Bot requested review from mountiny and removed request for a team June 26, 2026 14:39
@melvin-bot

melvin-bot Bot commented Jun 26, 2026

Copy link
Copy Markdown

@mountiny 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]

@ahmedGaber93

Copy link
Copy Markdown
Contributor

@MelvinBot Please update the OP's linked proposal to be #94617 (comment)

PROPOSAL: #93845 (comment)

@ahmedGaber93 ahmedGaber93 left a comment

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.

LGTM!

@mountiny mountiny left a comment

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.

Thanks! I would love someone from SWM to review this as well before proceeding

@staszekscp staszekscp left a comment

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.

The code looks fine, but there is one issue I'd like to raise about worklets. 😄

After talking to one of the maintainers it seems that if we'd like to bump the worklets package to the newest version, the app will stop working. The reason is that some values that we pass as a worklet dependency are not serialized by the package (eg. Date). For now they fail silently, but from the newest version they're going to throw exceptions.

One of the examples is a short line if (listBehavior === CONST.REGULAR) in src/components/KeyboardDismissibleFlatList/KeyboardDismissibleFlatListContext.tsx. In this case the whole CONST object gets serialized and it will cause exceptions with the nearest bump. I wanted to raise this now so we are already aware of a potential issue

Just to clear up - this code is fine, I'm talking about some other places that we need to think about

@mountiny mountiny left a comment

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.

Thanks!

@mountiny mountiny merged commit bda115b into main Jun 29, 2026
41 checks passed
@mountiny mountiny deleted the claude-fixComposerClearThrow branch June 29, 2026 14:31
@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

🧪🧪 Use the links below to test this adhoc build on Android, iOS, and Web. Happy testing! 🧪🧪
Built from App PR #94617.

Android 🤖 iOS 🍎
https://ad-hoc-expensify-cash.s3.us-east-1.amazonaws.com/rock-artifacts/ad-hoc/rock-android-Adhoc-bda115beee5-0f1cc02-33452aa9981e722cc91afcaefeadb33f5bc5dcaa/index.html https://ad-hoc-expensify-cash.s3.us-east-1.amazonaws.com/rock-artifacts/ad-hoc/rock-ios-device-AdHoc-bda115b-0f1cc02-201ae6726a83e6a175740d7451beb673f003976a/index.html
Android iOS
Web 🕸️
❌ FAILED ❌
The QR code can't be generated, because the Web build failed

👀 View the workflow run that generated this build 👀

@OSBotify

Copy link
Copy Markdown
Contributor

🚀 Deployed to staging by https://github.com/mountiny in version: 9.4.25-0 🚀

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

@OSBotify

OSBotify commented Jul 1, 2026

Copy link
Copy Markdown
Contributor

🚀 Deployed to production by https://github.com/cristipaval in version: 9.4.25-2 🚀

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

Bundle Size Analysis (Sentry):

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