Skip to content

Forward invitee data on the invite-to-chat mention whisper so the invite email is sent#94125

Merged
amyevans merged 11 commits into
Expensify:mainfrom
wildan-m:wildan/90141-resolve-mention-invite-email
Jul 6, 2026
Merged

Forward invitee data on the invite-to-chat mention whisper so the invite email is sent#94125
amyevans merged 11 commits into
Expensify:mainfrom
wildan-m:wildan/90141-resolve-mention-invite-email

Conversation

@wildan-m

@wildan-m wildan-m commented Jun 21, 2026

Copy link
Copy Markdown
Contributor

Explanation of Change

Inviting a non-member into a room by @-mentioning their email and then clicking Invite to chat on the resulting whisper adds them to the room but never sends them the welcome/invite email. The same person invited from the room's Members → Invite page does receive it. The two paths hand the server different data: the Members page path includes the room and the invited emails — what the server uses to send the invite email — while the invite-to-chat path sends only the whisper's action ID and the chosen resolution, leaving the server with no invitee data to email.

This change forwards the room ID and the invited emails on the invite-to-chat resolution, reusing the values the whisper already carries, so the request now matches the Members → Invite one. The fields are attached only for that resolution and only when the whisper actually carries invitee emails, so the "Do nothing" and "Invite to submit expenses" resolutions are unchanged. The backend half — which had stopped sending this email — is already fixed and on production, so supplying the invitee data from the client is the remaining piece.

Fixed Issues

$ #90141
PROPOSAL: #90141 (comment)

Tests

  1. Open a #room where you are an admin (e.g. a workspace room).
  2. In the room chat, @-mention an email address that does not have an Expensify account — use a +alias of your own Gmail so it has no Expensify account but still lands in your inbox (e.g. if your Gmail is youremail@gmail.com, use youremail+test@gmail.com) — and send the message.
  3. Verify the actionable whisper appears with the Invite to chat option, then click Invite to chat only.
  4. Verify the invited person is added to the room (an invited @<email> action appears).
  5. Wait ~10 minutes, then check the latest email in the invited address' inbox and verify the invitation email ("Here's what you missed … invited @…") arrived. Expensify sends this notification on a delay — and only if the invitee hasn't already opened the room in the app — so it won't appear immediately; don't open the room as the invited user while waiting.
  • Verify that no errors appear in the JS console

Offline tests

No offline-specific behavior. While offline, clicking Invite to chat only adds the invitee to the room optimistically; the request is sent — and the invitation email delivered — once the connection is restored.

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 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
Kapture.2026-07-02.at.14.17.17.mp4
Android: mWeb Chrome
Kapture.2026-07-02.at.14.20.37.mp4
iOS: Native
Kapture.2026-07-02.at.06.47.47.mp4
iOS: mWeb Safari
Kapture.2026-07-02.at.06.49.13.mp4
MacOS: Chrome / Safari
Kapture.2026-07-02.at.05.36.51.mp4

wildan-m added 3 commits May 11, 2026 12:57
…rding

Verify reportID and inviteeEmails are forwarded to the resolve command
for the INVITE resolution, and not for NOTHING or empty invitee lists.
Introduce a shared buildInviteWhisperAction helper used by the new and
existing whisper tests.
@wildan-m wildan-m marked this pull request as ready for review July 2, 2026 07:43
@wildan-m wildan-m requested review from a team as code owners July 2, 2026 07:43
@melvin-bot melvin-bot Bot requested a review from ikevin127 July 2, 2026 07:43
@melvin-bot

melvin-bot Bot commented Jul 2, 2026

Copy link
Copy Markdown

@ikevin127 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 requested review from JmillsExpensify and removed request for a team July 2, 2026 07:43

@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: c63b1e1d28

ℹ️ 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 thread src/libs/actions/Report/index.ts Outdated
Comment on lines +5823 to +5825
if (isInviteResolution && originalMessage?.inviteeEmails?.length) {
parameters.reportID = reportID;
parameters.inviteeEmails = originalMessage.inviteeEmails;

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 Filter emails to invitees that are still missing

When a stale actionable mention whisper is resolved after one of the mentioned users has already been added, buildParticipantsInviteData() skips that accountID so we don't change their participant settings, but this sends every originalMessage.inviteeEmails to the backend. Because these new fields are what trigger the invite email, the stale already-member address can receive another room invitation; filter the emails by the parallel inviteeAccountIDs that are not already in report.participants.

Useful? React with 👍 / 👎.

JmillsExpensify
JmillsExpensify previously approved these changes Jul 2, 2026

@JmillsExpensify JmillsExpensify 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

When a stale actionable mention whisper is resolved after one of the mentioned
users has already joined the room, only forward the emails whose accountIDs are
not yet participants, so the backend does not send an already-member a duplicate
room invitation. Mirrors the existing buildParticipantsInviteData filtering.
@codecov

codecov Bot commented Jul 2, 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/libs/actions/Report/index.ts 70.15% <ø> (-0.49%) ⬇️
... and 4498 files with indirect coverage changes

@ikevin127

ikevin127 commented Jul 2, 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

web.mp4

Comment on lines +5846 to +5849
const inviteeEmailsToInvite = originalMessage.inviteeEmails.filter((email, index) => {
const inviteeAccountID = originalMessage.inviteeAccountIDs?.at(index);
return inviteeAccountID === undefined || !(inviteeAccountID in (report?.participants ?? {}));
});

@ikevin127 ikevin127 Jul 2, 2026

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.

⚠️ (High Priority) Correctness: stale-whisper filter depends on undocumented parallel-array invariant

This couples inviteeEmails[i] to inviteeAccountIDs[i] by position. That correspondence is never asserted anywhere, in OriginalMessage.ts:152-157 they are two independent arrays populated by the backend:

inviteeEmails: string[];      // "Emails of users that aren't members of the room"
inviteeAccountIDs: number[];  // "Account IDs of users that aren't members of the room"

Why this matters: if the two arrays are ever out of order or of different lengths (e.g. the backend appends brand-new-user emails that don't yet have an account ID, so the accountIDs array is shorter than the emails array), the index mapping silently shifts. Concretely, imagine:

inviteeEmails      = ['alreadyMember@x.com', 'brandNew@x.com']
inviteeAccountIDs  = [200]   // brand-new user has no accountID yet

Then:

  • index 0 → email alreadyMember@x.com, accountID 200 → correctly evaluated
  • index 1 → email brandNew@x.com, inviteeAccountIDs.at(1) === undefined → kept (correct here by luck)

But the reverse ordering breaks it:

inviteeEmails      = ['brandNew@x.com', 'alreadyMember@x.com']
inviteeAccountIDs  = [200]
  • index 0 → email brandNew@x.com paired with accountID 200 (which is actually the other person).

If 200 is already a participant, brandNew@x.com gets dropped and never invited - reintroducing the exact bug this PR fixes, but only for a specific data ordering. This is precisely the "edge case that appears only with a particular data combination" class of bug that review is supposed to catch.

Recommendation: This is likely safe in practice (@amyevans confirmed on the issue that the BE creates an account ID even for +alias new users, so the arrays are probably parallel and equal-length), but the invariant is load-bearing and invisible. At minimum, document it and guard against length mismatch:

if (isInviteResolution && originalMessage?.inviteeEmails?.length) {
    const {inviteeEmails = [], inviteeAccountIDs = []} = originalMessage;
    // inviteeEmails[i] and inviteeAccountIDs[i] are parallel (same order/length) as built by the
    // backend whisper. Forward only invitees not already in the room so resolving a stale whisper
    // doesn't re-invite a member added in the meantime. An email with no matching accountID
    // (brand-new user) is always forwarded.
    const inviteeEmailsToInvite = inviteeEmails.filter((email, index) => {
        const inviteeAccountID = inviteeAccountIDs.at(index);
        return inviteeAccountID === undefined || !(inviteeAccountID in (report.participants ?? {}));
    });
    ...
}

And ideally add a regression test with a shorter inviteeAccountIDs array than inviteeEmails (the brand-new-user shape, which is literally the bug's scenario) - none of the four new tests exercise a length mismatch; they all pass equal-length parallel arrays ❗

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.

Documented the parallel-array invariant + added a length-mismatch regression test (shorter inviteeAccountIDs) in 7a6f83ee7d1; verified live the BE mints an accountID even for +alias users, so the arrays stay parallel.

@@ -5840,6 +5840,19 @@ function resolveActionableMentionWhisper(
resolution,
};

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.

🟡 NAB: Consistency - the filter duplicates buildParticipantsInviteData's "skip existing participants" logic

buildParticipantsInviteData (lines 5681-5694) already computes exactly which invitees are not already participants, via accountID in targetReport.participants. The new filter re-implements the same "not already in room" test independently, keyed on emails instead of account IDs, which is duplicated intent that can drift.

Why it matters: the inline comment says "matching the optimistic participant update above" - but the two are only kept in sync by hand. If someone later changes the optimistic filter (e.g. to also skip pending-delete members), the email filter won't follow.

Suggestion: have buildParticipantsInviteData (or a small shared helper) return the set of newly added account IDs, then derive emails from that set - a single source of truth for "who is actually new":

// buildParticipantsInviteData could also return the accountIDs it actually added:
return {optimistic, failure, newlyAddedAccountIDs};

Not a blocker, but it removes the hand-maintained coupling.

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.

Reduced it in 7a6f83ee7d1 — the filter now reuses the same inviteeAccountIDs that feeds buildParticipantsInviteData; skipped the newlyAddedAccountIDs refactor as a NAB, but happy to add it if you'd prefer.

import type {MockFetch} from '../utils/TestHelper';
import waitForBatchedUpdates from '../utils/waitForBatchedUpdates';
import waitForNetworkPromises from '../utils/waitForNetworkPromises';

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.

🟡 Test gap: optimistic/offline path isn't asserted

All four tests fully mock API.write (jest.spyOn(API, 'write').mockResolvedValue(undefined)), so they verify what params are sent but never that the optimisticData (participant addition) is applied, nor the failureData rollback.

Since this action is offline-first and the PR touches the same function that builds those optimistic participant updates, one test that lets API.write run against the mock fetch and asserts report.participants gained the invitee (and rolls back on failure) would protect the offline behavior.

Right now a regression in the optimistic branch would pass all four new tests ❗

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.

Added an offline test in 7a6f83ee7d1 that lets API.write run and asserts report.participants gains the new invitee while the existing member's role stays untouched.

@ikevin127 ikevin127 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 - Tests well

Only got 1 high priority comment and 2 NAB that should be addressed before merge to solidify the changes here 🙌

@melvin-bot melvin-bot Bot requested a review from amyevans July 2, 2026 21:23
wildan-m added 2 commits July 3, 2026 14:59
Document the inviteeEmails/inviteeAccountIDs parallel-array invariant and reuse
the shared inviteeAccountIDs variable (single source with the participant
update). Add a regression test for the brand-new-user shape (shorter
inviteeAccountIDs) and an assertion of the optimistic participant update.
@ikevin127

Copy link
Copy Markdown
Contributor

✅ Changes LGTM, @amyevans on to you for final review.

@amyevans amyevans 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.

Looks good, thanks!

@amyevans amyevans merged commit 78e0535 into Expensify:main Jul 6, 2026
37 of 38 checks passed
@OSBotify

OSBotify commented Jul 6, 2026

Copy link
Copy Markdown
Contributor

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

@github-actions

github-actions Bot commented Jul 6, 2026

Copy link
Copy Markdown
Contributor

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

@OSBotify

OSBotify commented Jul 7, 2026

Copy link
Copy Markdown
Contributor

🚀 Deployed to staging by https://github.com/amyevans in version: 9.4.29-0 🚀

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

@MelvinBot

Copy link
Copy Markdown
Contributor

No help site changes required

I reviewed this PR against the help site articles under docs/articles, applying HELPSITE_NAMING_CONVENTIONS.md, HELP_AUTHORING_GUIDELINES.md, and TEMPLATE.md. No documentation update is needed, so I did not open a draft docs PR.

Why: This is an invisible behavioral bug fix. It forwards the room ID and invited emails on the invite-to-chat mention-whisper resolution so the invitee actually receives the welcome/invitation email — matching what the Members → Invite member path already did. There is no new feature, no new/renamed UI, no changed button labels, and no change to the documented steps.

The only article that covers this flow is Chat-Features-and-Moderation-Tools.md ("Invite Members to Groups or Rooms" → "Using @mention"). It documents the happy path generically — type @ and the person's name or email, then send the message to invite them — and never describes the email-delivery mechanics or the broken behavior this PR corrects. The fix simply makes reality match what the docs already imply, so the existing copy remains accurate.

@wildan-m — since no help site changes are required, there is no linked docs PR to review. If you believe an article should be updated (e.g. to document the invite-to-chat whisper flow more explicitly), let me know and I'll open a draft PR.

@OSBotify

OSBotify commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

🚀 Deployed to staging by https://github.com/amyevans in version: 9.4.31-0 🚀

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

@MelvinBot

Copy link
Copy Markdown
Contributor

Help site review — no changes required

I reviewed the changes in this PR against the help site articles under docs/articles, and no documentation updates are required.

Why: This PR is an internal behavior fix. It forwards the room ID and invitee emails on the Invite to chat whisper resolution so the backend sends the welcome/invitation email — matching what the Members → Invite path already does. There is no new or changed UI label, tab, setting, or user-facing flow.

The closest article is Chat-Features-and-Moderation-Tools.md, whose Invite Members to Groups or Rooms section documents the @mention invite path:

Using @mention

  1. In the message field, type @ and the person's name or email.
  2. Send the message to invite them.

These steps remain accurate. The article never documented the invitation-email delivery mechanics that this PR corrects, so it stays consistent with current behavior. No draft PR was created.

@wildan-m, since no help site changes were needed, there's no linked help site PR to review. If you believe an article should explicitly call out that @mention-invited users receive an invitation email, let me know and I'll draft the update.

@OSBotify

OSBotify commented Jul 9, 2026

Copy link
Copy Markdown
Contributor

🚀 Deployed to production by https://github.com/grgia in version: 9.4.31-0 🚀

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.

6 participants