Skip to content

[No QA] Add advance-vs-stall telemetry to reconnect requests and alert on the older loop-breaker - #97585

Merged
blimpich merged 12 commits into
Expensify:mainfrom
callstack-internal:reconnect-gmom-patterns-followups
Aug 7, 2026
Merged

[No QA] Add advance-vs-stall telemetry to reconnect requests and alert on the older loop-breaker#97585
blimpich merged 12 commits into
Expensify:mainfrom
callstack-internal:reconnect-gmom-patterns-followups

Conversation

@adhorodyski

@adhorodyski adhorodyski commented Jul 31, 2026

Copy link
Copy Markdown
Contributor

Explanation of Change

Sentry shows a reconnect request as an opaque POST .../api/GetMissingOnyxMessages or ReconnectApp span with no way to tell a client that's genuinely advancing from one that's stuck re-asking for the same range.

This PR adds a new ManualReconnectServerResponse span around ReconnectApp and GetMissingOnyxMessages requests in the SentryServerTiming middleware, tagged with update_id_from, update_id_to and response_advanced.

response_advanced is stamped only when the request asked from an update ID and the response returned one. An absent response_advanced means the middleware could not tell. A response with no lastUpdateID is never counted as a stalled client.

Fixed Issues

$ #92541
PROPOSAL:

Tests

Test 1: incremental ReconnectApp

  1. Run npm run web. Sign in. Wait for the app to load.
  2. Open the browser console. Filter on [Sentry][ManualReconnectServerResponse.
  3. Open DevTools. Go to the Network tab. Set the throttle to Offline.
  4. Wait 5 seconds. Set the throttle back to Online.
  5. Find the Ending span line. The line shows command: ReconnectApp and json_code: 200.
  6. The line also shows update_id_from and response_advanced. The line shows no update_id_to. A client that already loaded sends an incremental reconnect, so Reconnect.reconnect() passes lastUpdateIDAppliedToClient as updateIDFrom. reconnectApp sends no updateIDTo.
  7. Find the [OnyxUpdates] App reconnecting with updateIDFrom: X line. X equals update_id_from on the span.
  8. response_advanced is false. Nothing changed on the account during the 5 seconds offline.
  9. Repeat steps 3 to 5. This time send a message from a second browser profile or from your phone while the first tab is offline. response_advanced on the ReconnectApp line is now true.

Test 2: full ReconnectApp

  1. Keep the console filter from Test 1.
  2. Run these two lines in the console. The two values make the client look stale to subscribeToFullReconnect.
    Onyx.merge('lastFullReconnectTime', '2000-01-01 00:00:00.000');
    Onyx.merge('nvp_reconnectAppIfFullReconnectBefore', '2026-01-01 00:00:00.000');
  3. The console shows Full reconnect triggered, then [OnyxUpdates] App reconnecting with updateIDFrom: 0.
  4. Find the Ending span line. The line shows command: ReconnectApp and json_code: 200.
  5. The line shows no update_id_from, no update_id_to, and no response_advanced. A full reconnect fetches all data again, so reconnectApp sends no updateIDFrom. The middleware has nothing to compare.

Test 3: GetMissingOnyxMessages

  1. Keep the console filter from Test 1.
  2. Set the Network throttle to Offline in the first tab.
  3. Sign in to the same account from a second browser profile or from your phone.
  4. Send a message from the second session to a chat that the account is in.
  5. Set the throttle in the first tab back to Online. The client finds the gap in update IDs and calls GetMissingOnyxMessages.
  6. Find the Ending span line. The line shows command: GetMissingOnyxMessages, json_code: 200, update_id_from, update_id_to, and response_advanced: true.
  7. Find the [OnyxUpdates] Fetching missing updates updateIDFrom: X and updateIDTo: Y line. X equals update_id_from on the span. Y equals update_id_to on the span.
  • Verify that no errors appear in the JS console

Offline tests

  1. Go offline.
  2. Change data on the account from another client/session while offline.
  3. Go back online.
  4. Verify the client still fetches and applies the missing updates as before this PR. This PR adds telemetry and one alert. This PR does not change the reconnect request or response flow.

QA Steps

An explicit no QA label.

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

N/A — this PR only adds Sentry span attributes and upgrades an internal log call to an alert; there is no UI change to capture.

Android: mWeb Chrome

N/A — this PR only adds Sentry span attributes and upgrades an internal log call to an alert; there is no UI change to capture.

iOS: Native

N/A — this PR only adds Sentry span attributes and upgrades an internal log call to an alert; there is no UI change to capture.

iOS: mWeb Safari

N/A — this PR only adds Sentry span attributes and upgrades an internal log call to an alert; there is no UI change to capture.

MacOS: Chrome / Safari

N/A — this PR only adds Sentry span attributes and upgrades an internal log call to an alert; there is no UI change to capture.

…lder loop-breaker

A repeated GetMissingOnyxMessages call is only readable with the range it
asked for: a range that advances is a client catching up on a busy account,
a range that repeats is a client stuck in a loop. The span carried neither,
so classifying the two shapes meant inferring from response sizes.

Stamp updateIDFrom/updateIDTo onto the outgoing request span via Sentry's
beforeOutgoingRequestSpan hook. It reads the values out of the request body,
so it lands on the same http.client span that existing Sentry queries match,
which no middleware or call-site span can reach. Only GetMissingOnyxMessages
and incremental ReconnectApp send those fields, so nothing else is stamped.

Also switch the older loop-breaker in validateAndApplyDeferredUpdates from
Log.info to Log.alert. Info stays on the device, so we could not tell whether
that guard has ever fired in the field, while the newer guard in
OnyxUpdateManager already alerts and is countable.

No change to reconnect or gap-detection behaviour.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
@codecov

codecov Bot commented Jul 31, 2026

Copy link
Copy Markdown

Codecov Report

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

Files with missing lines Coverage Δ
src/CONST/index.ts 94.81% <ø> (ø)
src/libs/Middleware/SentryServerTiming.ts 100.00% <100.00%> (+17.64%) ⬆️
src/libs/actions/OnyxUpdateManager/utils/index.ts 98.36% <100.00%> (ø)
... and 16 files with indirect coverage changes

The Sentry `beforeOutgoingRequestSpan` approach could not work on native. It
reads the request body out of `hint.input`, and only the fetch path populates
that field. React Native's tracing integration sets `traceFetch: false` and
`traceXHR: true`, so on iOS and Android the hook fired with no body to read and
stamped nothing — on exactly the platforms where reconnect storms hurt most.

The hook also fires at request start, so it can never answer the question the
telemetry exists for: did this call advance the client. That is a comparison
against the response. Sentry search compares a field to a literal, not to
another field, so `last_update_id <= update_id_from` is not expressible as a
query either. The verdict has to be computed at write time and stored.

`SentryServerTiming` already runs for every command, already sees both the
request and the response, and its own comment says to extend
`TRACKED_COMMAND_GROUPS` rather than add a middleware. Reconnect commands get a
group there, with `update_id_from` from the request and `response_advanced`
from the response.

Two details worth naming:

`update_id_from` is absent on a full ReconnectApp, which refetches everything,
so `response_advanced` is left off those spans too — there is nothing to advance
past. That also keeps the attribute off the write-command spans in the other
group. The check is `=== undefined` rather than truthiness because
`updateIDFrom` is legitimately 0 for GetMissingOnyxMessages.

Span ids no longer key off `requestIndex`. That field is only set on persisted
write requests, so every reconnect span shared one key, and starting the next
span cancelled the one still in flight — a collision in precisely the
overlapping-burst case this measures.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
@adhorodyski adhorodyski changed the title [No QA] Add the update-ID range to reconnect request spans and alert on the older loop-breaker [No QA] Add advance-vs-stall telemetry to reconnect requests and alert on the older loop-breaker Aug 5, 2026
adhorodyski and others added 6 commits August 5, 2026 18:40
The floor alone cannot separate two different stalls. When update_id_from holds
still and update_id_to keeps rising, the client is falling behind a server that
keeps producing updates. When both hold still, the client is stuck asking for a
range the server will not serve. `response_advanced` reads false in both cases.

The earlier reasoning for dropping this attribute was that Sentry cannot
subtract two attributes, so it cannot report backlog size. True, but the useful
query needs no subtraction: group by user.id, then plot
count_unique(update_id_from) against count_unique(update_id_to). A unique floor
of 1 against a rising target is the falling-behind case.

The value is real on every GetMissingOnyxMessages call, never the 0 default: it
arrives as lastUpdateIDFromServer, previousUpdateIDFromServer, or
latestMissingUpdateID. ReconnectApp has no target, so the attribute stays off
those spans.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
`prepareRequest` stamps `requestIndex: requestIndex++` on every request it
builds (API/index.ts:137), and `makeRequestWithSideEffects` goes through it, so
GetMissingOnyxMessages and ReconnectApp already carry a unique monotonic index.
The counter added earlier solved nothing. The field reads as optional on the
Request type because persisted requests restored from disk can predate it, not
because side-effect requests lack it.

Also drops the last two comments. Both restated what the code says.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
"refetches" is not in the dictionary; "fetches everything again" says the same thing.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
didResponseAdvance defaulted a missing lastUpdateID to 0, so an unreadable
answer compared as 0 > updateIDFrom and stamped response_advanced: false —
indistinguishable from a client genuinely re-asking for the same range. Return
undefined instead, so an absent verdict means "could not tell". The presence of
update_id_from still separates that from a full reconnect, which has nothing to
compare against in the first place.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
@adhorodyski
adhorodyski marked this pull request as ready for review August 6, 2026 15:15
@adhorodyski
adhorodyski requested review from a team as code owners August 6, 2026 15:15
@melvin-bot

melvin-bot Bot commented Aug 6, 2026

Copy link
Copy Markdown

@mkhutornyi 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 request for a team August 6, 2026 15:15
@mountiny
mountiny self-requested a review August 6, 2026 15:16
@mountiny

mountiny commented Aug 6, 2026

Copy link
Copy Markdown
Contributor

@MelvinBot review

@mkhutornyi

mkhutornyi commented Aug 6, 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
Android: mWeb Chrome
iOS: HybridApp
ios.mov
iOS: mWeb Safari
MacOS: Chrome / Safari
web.mov

@MelvinBot

Copy link
Copy Markdown
Contributor

🤖 Review: LGTM — small, well-tested, low-risk telemetry change. It adds a ManualReconnectServerResponse span (with update_id_from / update_id_to / response_advanced) around ReconnectApp + GetMissingOnyxMessages, and promotes the "repeated params" abort log to an alert. No user-facing behavior change, and coverage on the middleware is 100%.

I confirmed the reconnect semantics line up with how the requests are actually built:

  • Full ReconnectApp omits updateIDFrom (only set when truthy), so readUpdateIDFromundefined → no verdict. ✅
  • Incremental ReconnectApp sends a numeric updateIDFrom, no updateIDTo. ✅
  • GetMissingOnyxMessages always sends both, with updateIDTo possibly a string — matching the asymmetric parsing (updateIDFrom number-only via readUpdateIDFrom, updateIDTo coerced via Number()). ✅
  • Matching on the 'ReconnectApp' string value captures both the WRITE and SIDE_EFFECT dispatch paths.

Web smoke test (web platform): app loads, Inbox renders, and open-chat → back navigates cleanly with no regression (screenshots below). Console-level span inspection isn't reachable through the web agent tooling, and no reconnect fired in the short session — so the span-line assertions in the test plan (Tests 1–3) still need a human pass with DevTools + network throttling.

Two minor, non-blocking notes:

1. Number() treats null/'' as a finite 0 — a defensive gap vs. the PR's own "never read as a stall" goal

In SentryServerTiming.ts:64-70, didResponseAdvance guards undefined via Number.isFinite, which correctly handles a missing lastUpdateID (Number(undefined)NaN). But Number(null) and Number('') both return a finite 0, so a response carrying lastUpdateID: null or '' would be read as response_advanced: false — i.e. a false "stall" — which is exactly the outcome the last commit ("Stop reading a response with no lastUpdateID as a stalled client") set out to avoid.

The declared type is number | string (never null), so this is defensive rather than a live bug. If you want to fully close the gap, a lastUpdateID == null || lastUpdateID === '' short-circuit (and the same for updateIDTo in readUpdateIDTo) would make the guarantee hold regardless of runtime shape.

2. The Log.infoLog.alert promotion fires per aborted retry

OnyxUpdateManager/utils/index.ts:163 — this is the intended signal for detecting a stuck client (the point of the linked issue), and it's correctly gated behind the repeated-params guard. Just flagging that Log.alert defaults to includeStackTrace: true, so a persistently-stuck client will emit a repeated stack-trace alert on each aborted attempt. That's acceptable for the diagnostic goal, but worth keeping an eye on alert volume once it's live.

Concierge chat opened from Inbox after sign-in

Concierge chat opened from Inbox after sign-in

Home hub after navigating back from chat

Home hub after navigating back from chat

Comment thread src/libs/Middleware/SentryServerTiming.ts Outdated
@mkhutornyi

Copy link
Copy Markdown
Contributor

Please pull main.

@chatgpt-codex-connector

Copy link
Copy Markdown

Codex Review: Didn't find any major issues. Another round soon, please!

Reviewed commit: 4ef1439e84

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

@melvin-bot
melvin-bot Bot requested a review from blimpich August 6, 2026 19:35
@garrettmknight
garrettmknight removed their request for review August 6, 2026 19:52
mountiny
mountiny previously approved these changes Aug 7, 2026

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

Looks good, there is one pending comment, can you check it please?

adhorodyski and others added 2 commits August 7, 2026 20:46
Number(null) and Number('') are both a finite 0, so Number.isFinite let
them through as update ID 0: a response carrying no lastUpdateID read as
a stalled client, and a request with no updateIDTo stamped a target of 0.
Both sites now share one reader that rejects those two shapes first.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
@blimpich
blimpich merged commit 1aa37af into Expensify:main Aug 7, 2026
39 of 41 checks passed
@github-actions

github-actions Bot commented Aug 7, 2026

Copy link
Copy Markdown
Contributor

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

@adhorodyski
adhorodyski deleted the reconnect-gmom-patterns-followups branch August 10, 2026 08:03
@OSBotify

Copy link
Copy Markdown
Contributor

🚀 Deployed to staging by https://github.com/blimpich in version: 9.4.52-0 🚀

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

@MelvinBot

Copy link
Copy Markdown
Contributor

🤖 I reviewed the changes in this PR against Expensify's help site content under docs/articles.

No help site changes are required. This PR is purely internal observability and changes no customer-facing behavior:

  • Adds a new Sentry span (ManualReconnectServerResponse) with update_id_from, update_id_to, and response_advanced attributes around ReconnectApp / GetMissingOnyxMessages in the SentryServerTiming middleware.
  • Upgrades one Log.info loop-breaker message to Log.alert.
  • Adds unit tests for the middleware.

The help site documents user-facing product features, settings, workspaces, integrations, and billing — none of which are touched here. There is no UI, setting, label, or workflow change to document, so no draft help site PR was created and there is nothing to review.

@adhorodyski, if you believe a help site update is nonetheless warranted, let me know what behavior should be documented and I'll open a draft PR.

@OSBotify

Copy link
Copy Markdown
Contributor

🚀 Deployed to production by https://github.com/roryabraham in version: 9.4.52-11 🚀

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.

7 participants