Skip to content

feat(cloud): redeem desktop login codes for web-to-desktop identity stitching (GTM-93)#13418

Merged
benceruleanlu merged 14 commits into
mainfrom
benceruleanlu/gtm-93-desktop-login-completion
Jul 10, 2026
Merged

feat(cloud): redeem desktop login codes for web-to-desktop identity stitching (GTM-93)#13418
benceruleanlu merged 14 commits into
mainfrom
benceruleanlu/gtm-93-desktop-login-completion

Conversation

@benceruleanlu

@benceruleanlu benceruleanlu commented Jul 2, 2026

Copy link
Copy Markdown
Member

What

Browser half of GTM-93 macOS web→desktop identity stitching: when the desktop app opens the system browser at cloud login with ?desktop_login_code=dlc_…, the frontend redeems that code against the cloud backend once a Firebase session exists — after explicit user approval.

Reworked on top of the preserved-query stripAfterCapture capability (#13465):

  • The DESKTOP_LOGIN namespace opts into strip-on-capture: the code is stashed and removed from the URL before any navigation completes, so it never reaches history, previousFullPath, later guards, or telemetry — the hand-rolled URL scrubbing this PR previously carried (raw-string parser + three strip sites) is gone.
  • desktopLoginRedemption.ts is a plain module with a single export, installDesktopLoginRedemption(router), installed once in router.ts's cloud block (replaces six per-view/composable trigger sites). Redemption reads the code only from the stash: per-code state (approval + 2-attempt transient budget, so a second code gets its own approval and budget), approval dialog, POST /api/auth/desktop-login-codes/redeem with the raw Firebase ID token (backend route is Firebase-JWT-only), 10s fetch timeout.
  • Triggers: router.afterEach (the cloud auth guard settles Firebase init before navigations complete) plus a lazy watcher on authStore.currentUser for sessions that appear without a navigation (OAuth-resume error branch, dialog sign-in). One bounded in-page retry (5s) guarantees an approved sign-in always ends in a success or failure toast.
  • Terminal rejections (400/403/404/409/410) drop the code with an error toast; transient failures (401/5xx/timeout/network) retry once; budget exhaustion now surfaces a failure toast instead of dying silently.

Why

Windows stitches web→desktop at download time via installer stamping; macOS DMGs can't be stamped, so we stitch at login. The browser is where both halves meet: the existing posthog.identify(uid) merges the web anon person into the Firebase uid, and the backend emits comfy.cloud.identity.login_attributed (uid ↔ installation_id) at redeem. The desktop app polls the backend and receives a one-time custom token — no auth material posted to a desktop loopback server (the concern that stalled #12983, which this supersedes).

Security

  • Approval dialog before redeem — redemption mints the desktop a sign-in token for your account, so a lured click must not be enough (device-code phishing mitigation). Cancel clears the stash and does nothing.
  • Only the opaque single-use code ever appears in a URL; the tracker strips it on first sight, pre-navigation, and it is never logged.

Testing

Vitest, driven through a real router (createRouter/createMemoryHistory, no vue-router mocks) and the real preserved-query manager: capture/stash lifecycle, approval gate (no fetch before approve; decline/dismiss clears; per-code approval), Bearer/body shape, terminal-vs-transient statuses, timeout abort, bounded in-page retry + failure toast on budget exhaustion, per-code regressions (second code after success/decline/exhaustion redeems independently), auth-watcher trigger (session appearing without navigation), unauthenticated no-op, trigger coalescing. Typecheck/lint/format clean.

Types are hand-written with a TODO(@comfyorg/ingest-types) — the generated types land automatically once the cloud PR merges and the type-gen workflow runs.

Landing order

  1. Cloud backend: https://github.com/Comfy-Org/cloud/pull/4736 (until it ships, redemption never triggers — this PR is inert)
  2. feat(navigation): add opt-in strip-on-capture to preserved-query tracker #13465 preserved-query strip-on-capture (base of this PR)
  3. fix(dialog): queue global prompts so concurrent confirm/prompt promises always settle #13466 global-prompt FIFO queue (runtime dependency: the approval confirm must settle even if another prompt is open)
  4. This PR
  5. Desktop (activates the flow): feat(auth): sign in via cloud login page with short-lived desktop login codes (GTM-93) Comfy-Desktop#1222

GTM-93 · Supersedes #12983

@coderabbitai

coderabbitai Bot commented Jul 2, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

Adds a desktop-login one-time-code redemption feature: a new module handles per-code approval, redeem requests with Firebase ID tokens, terminal/transient error handling, retry scheduling, and an auth watcher; wired into router navigation with a preserved-query namespace and new localization strings.

Changes

Desktop login redemption feature

Layer / File(s) Summary
Preserved query namespace and localization strings
src/platform/navigation/preservedQueryNamespaces.ts, src/locales/en/main.json
Adds DESKTOP_LOGIN namespace value and auth.desktopLogin localization strings for confirm/success/expired/failed states.
Redemption module implementation
src/platform/cloud/onboarding/desktopLoginRedemption.ts
Implements per-code state tracking, user approval gating, ID-token fetch, redeem POST request with abort timeout, terminal vs transient status handling with retries and toasts, an auth watcher, and orchestration to coalesce concurrent triggers.
Redemption tests
src/platform/cloud/onboarding/desktopLoginRedemption.test.ts
Adds a Vitest suite covering approval, retries, terminal/transient statuses, malformed codes, account-change consistency, mid-flight replacement, and concurrency coalescing.
Router wiring
src/router.ts
Imports and installs installDesktopLoginRedemption, and adds a DESKTOP_LOGIN preserved-query definition with stripAfterCapture.

Estimated code review effort: 4 (Complex) | ~60 minutes

Sequence Diagram(s)

sequenceDiagram
  participant Router
  participant desktopLoginRedemption
  participant DialogService
  participant AuthStore
  participant Backend

  Router->>desktopLoginRedemption: afterEach navigation
  desktopLoginRedemption->>desktopLoginRedemption: read preserved desktop_login_code
  desktopLoginRedemption->>AuthStore: wait for authenticated user
  desktopLoginRedemption->>DialogService: confirmRedemption(code, uid)
  DialogService-->>desktopLoginRedemption: approved/declined
  alt approved
    desktopLoginRedemption->>AuthStore: get Firebase ID token
    AuthStore-->>desktopLoginRedemption: idToken
    desktopLoginRedemption->>Backend: POST /auth/desktop-login-codes/redeem
    Backend-->>desktopLoginRedemption: response (ok/terminal/transient)
    alt success
      desktopLoginRedemption-->>Router: clear preserved query, success toast
    else terminal error
      desktopLoginRedemption-->>Router: clear preserved query, expired/failed toast
    else transient error
      desktopLoginRedemption->>desktopLoginRedemption: schedule delayed retry
    end
  else declined
    desktopLoginRedemption-->>Router: clear preserved query
  end
Loading

Suggested labels: area:cloud, released:cloud

Suggested reviewers: christian-byrne, CodeJuggernaut


Important

Pre-merge checks failed

Please resolve all errors before merging. Addressing warnings is optional.

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
End-To-End Regression Coverage For Fixes ❓ Inconclusive PR title and commit subjects aren’t available here, so the bug-fix-language trigger can’t be verified from metadata alone. Please provide the PR title or commit subjects so I can confirm whether bug-fix language was used and apply the test-check rules.
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly summarizes the main change: redeeming desktop login codes for cloud/web-to-desktop stitching.
Description check ✅ Passed The description covers the core change, rationale, security, and testing, though it does not follow the template headings exactly.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Adr Compliance For Entity/Litegraph Changes ✅ Passed No changed files touch src/lib/litegraph/, src/ecs/, or graph-entity paths, so the ADR check is not applicable.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch benceruleanlu/gtm-93-desktop-login-completion

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@github-actions

github-actions Bot commented Jul 2, 2026

Copy link
Copy Markdown

🎨 Storybook: ✅ Built — View Storybook

Details

⏰ Completed at: 07/10/2026, 01:55:59 AM UTC

Links

🎭 Playwright: ✅ 1691 passed, 0 failed · 3 flaky

📊 Browser Reports
  • chromium: View Report (✅ 1672 / ❌ 0 / ⚠️ 2 / ⏭️ 5)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 16 / ❌ 0 / ⚠️ 1 / ⏭️ 0)

📦 Bundle: 7.78 MB gzip 🔴 +1.78 kB

Details

Summary

  • Raw size: 32.8 MB baseline 32.8 MB — 🔴 +5.99 kB
  • Gzip: 7.78 MB baseline 7.78 MB — 🔴 +1.78 kB
  • Brotli: 5.36 MB baseline 5.36 MB — 🔴 +1.35 kB
  • Bundles: 303 current • 303 baseline • 147 added / 147 removed

Category Glance
App Entry Points 🔴 +5.19 kB (53.2 kB) · Other 🔴 +735 B (11.7 MB) · Utilities & Hooks 🔴 +63 B (3.39 MB) · Vendor & Third-Party ⚪ 0 B (15.3 MB) · Graph Workspace ⚪ 0 B (1.27 MB) · Panels & Settings ⚪ 0 B (550 kB) · + 5 more

App Entry Points — 53.2 kB (baseline 48 kB) • 🔴 +5.19 kB

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-BOVyjdrE.js (new) 53.2 kB 🔴 +53.2 kB 🔴 +15.7 kB 🔴 +13.5 kB
assets/index-BfVKTuD0.js (removed) 48 kB 🟢 -48 kB 🟢 -14.1 kB 🟢 -12.2 kB

Status: 1 added / 1 removed

Graph Workspace — 1.27 MB (baseline 1.27 MB) • ⚪ 0 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-BRYLuxz3.js (removed) 1.27 MB 🟢 -1.27 MB 🟢 -271 kB 🟢 -203 kB
assets/GraphView-DCTP3TzS.js (new) 1.27 MB 🔴 +1.27 MB 🔴 +271 kB 🔴 +203 kB

Status: 1 added / 1 removed

Views & Navigation — 110 kB (baseline 110 kB) • ⚪ 0 B

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-C2R-bpS-.js (removed) 25 kB 🟢 -25 kB 🟢 -6.25 kB 🟢 -5.53 kB
assets/CloudSurveyView-DCoW9O8r.js (new) 25 kB 🔴 +25 kB 🔴 +6.25 kB 🔴 +5.52 kB
assets/CloudLoginView-B5XpdZnO.js (new) 11.4 kB 🔴 +11.4 kB 🔴 +3.06 kB 🔴 +2.68 kB
assets/CloudLoginView-Bm5ktlTZ.js (removed) 11.4 kB 🟢 -11.4 kB 🟢 -3.06 kB 🟢 -2.68 kB
assets/CloudSignupView-BtreABHJ.js (removed) 9.79 kB 🟢 -9.79 kB 🟢 -2.74 kB 🟢 -2.41 kB
assets/CloudSignupView-BVRFP0D6.js (new) 9.79 kB 🔴 +9.79 kB 🔴 +2.74 kB 🔴 +2.4 kB
assets/CloudLayoutView-_IfwDt4Z.js (new) 9.59 kB 🔴 +9.59 kB 🔴 +2.37 kB 🔴 +2.05 kB
assets/CloudLayoutView-NpC7ex3Q.js (removed) 9.59 kB 🟢 -9.59 kB 🟢 -2.37 kB 🟢 -2.05 kB
assets/UserCheckView-C1yvcZJL.js (new) 8.8 kB 🔴 +8.8 kB 🔴 +2.22 kB 🔴 +1.93 kB
assets/UserCheckView-DDnuTA0u.js (removed) 8.8 kB 🟢 -8.8 kB 🟢 -2.22 kB 🟢 -1.93 kB
assets/CloudSubscriptionRedirectView-D1XQTF5K.js (new) 6.98 kB 🔴 +6.98 kB 🔴 +2.58 kB 🔴 +2.28 kB
assets/CloudSubscriptionRedirectView-qIc947FJ.js (removed) 6.98 kB 🟢 -6.98 kB 🟢 -2.58 kB 🟢 -2.26 kB
assets/WidgetTextPreview-CDRyS7lG.js (removed) 6.13 kB 🟢 -6.13 kB 🟢 -2.15 kB 🟢 -1.91 kB
assets/WidgetTextPreview-DmwEhkjq.js (new) 6.13 kB 🔴 +6.13 kB 🔴 +2.15 kB 🔴 +1.92 kB
assets/UserSelectView-CuJa3d2O.js (new) 6 kB 🔴 +6 kB 🔴 +2.15 kB 🔴 +1.89 kB
assets/UserSelectView-Czj70-Np.js (removed) 6 kB 🟢 -6 kB 🟢 -2.15 kB 🟢 -1.89 kB
assets/CloudForgotPasswordView-BXIIIOrR.js (removed) 5.15 kB 🟢 -5.15 kB 🟢 -1.76 kB 🟢 -1.54 kB
assets/CloudForgotPasswordView-Mwc4qRB9.js (new) 5.15 kB 🔴 +5.15 kB 🔴 +1.76 kB 🔴 +1.54 kB
assets/CloudAuthTimeoutView-BKA3kAbF.js (removed) 4.49 kB 🟢 -4.49 kB 🟢 -1.57 kB 🟢 -1.37 kB
assets/CloudAuthTimeoutView-Hcswj694.js (new) 4.49 kB 🔴 +4.49 kB 🔴 +1.57 kB 🔴 +1.37 kB
assets/WidgetTextPreview-DBhyUlU8.js (removed) 131 B 🟢 -131 B 🟢 -100 B 🟢 -88 B
assets/WidgetTextPreview-Dbtohvf6.js (new) 131 B 🔴 +131 B 🔴 +100 B 🔴 +90 B

Status: 11 added / 11 removed / 3 unchanged

Panels & Settings — 550 kB (baseline 550 kB) • ⚪ 0 B

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-B-yXYc69.js (removed) 49.4 kB 🟢 -49.4 kB 🟢 -9.98 kB 🟢 -8.82 kB
assets/KeybindingPanel-BUqBvyW4.js (new) 49.4 kB 🔴 +49.4 kB 🔴 +9.97 kB 🔴 +8.84 kB
assets/SecretsPanel-DmMjYtKL.js (removed) 27.3 kB 🟢 -27.3 kB 🟢 -6.64 kB 🟢 -5.8 kB
assets/SecretsPanel-Q3IjgnX_.js (new) 27.3 kB 🔴 +27.3 kB 🔴 +6.63 kB 🔴 +5.81 kB
assets/CreditsPanel-B6r2S4zh.js (removed) 15.9 kB 🟢 -15.9 kB 🟢 -4.66 kB 🟢 -4.08 kB
assets/CreditsPanel-BKtu4Rxh.js (new) 15.9 kB 🔴 +15.9 kB 🔴 +4.66 kB 🔴 +4.08 kB
assets/AboutPanel-CsW0mmXS.js (new) 12 kB 🔴 +12 kB 🔴 +3.29 kB 🔴 +2.94 kB
assets/AboutPanel-z9Cp81BN.js (removed) 12 kB 🟢 -12 kB 🟢 -3.29 kB 🟢 -2.94 kB
assets/SubscriptionPanel-B9tc5pTP.js (removed) 11.5 kB 🟢 -11.5 kB 🟢 -3.66 kB 🟢 -3.22 kB
assets/SubscriptionPanel-DOgi9VX9.js (new) 11.5 kB 🔴 +11.5 kB 🔴 +3.66 kB 🔴 +3.2 kB
assets/ExtensionPanel-CtpuBJQt.js (new) 9.03 kB 🔴 +9.03 kB 🔴 +2.5 kB 🔴 +2.2 kB
assets/ExtensionPanel-DLEDLgMY.js (removed) 9.03 kB 🟢 -9.03 kB 🟢 -2.5 kB 🟢 -2.2 kB
assets/ServerConfigPanel-CROMJWgp.js (new) 6.15 kB 🔴 +6.15 kB 🔴 +1.97 kB 🔴 +1.76 kB
assets/ServerConfigPanel-DyyAfpc5.js (removed) 6.15 kB 🟢 -6.15 kB 🟢 -1.97 kB 🟢 -1.76 kB
assets/UserPanel-C7hKkgEC.js (new) 5.78 kB 🔴 +5.78 kB 🔴 +1.82 kB 🔴 +1.58 kB
assets/UserPanel-MwCNIXoI.js (removed) 5.78 kB 🟢 -5.78 kB 🟢 -1.82 kB 🟢 -1.58 kB
assets/refreshRemoteConfig-Bt8_mrMu.js (new) 2.88 kB 🔴 +2.88 kB 🔴 +1.26 kB 🔴 +1.11 kB
assets/refreshRemoteConfig-DXIt9AZd.js (removed) 2.88 kB 🟢 -2.88 kB 🟢 -1.26 kB 🟢 -1.11 kB
assets/cloudRemoteConfig-B33eOstf.js (removed) 990 B 🟢 -990 B 🟢 -541 B 🟢 -447 B
assets/cloudRemoteConfig-CEmESRo1.js (new) 990 B 🔴 +990 B 🔴 +541 B 🔴 +470 B
assets/refreshRemoteConfig-Bf8ifG8U.js (new) 110 B 🔴 +110 B 🔴 +89 B 🔴 +90 B
assets/refreshRemoteConfig-Cx7bUw-u.js (removed) 110 B 🟢 -110 B 🟢 -89 B 🟢 -83 B

Status: 11 added / 11 removed / 16 unchanged

User & Accounts — 29.1 kB (baseline 29.1 kB) • ⚪ 0 B

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/SignUpForm-D-KuN_90.js (new) 12.3 kB 🔴 +12.3 kB 🔴 +4.19 kB 🔴 +3.65 kB
assets/SignUpForm-Dojfn1mL.js (removed) 12.3 kB 🟢 -12.3 kB 🟢 -4.19 kB 🟢 -3.65 kB
assets/auth-CaHBxNBP.js (new) 3.69 kB 🔴 +3.69 kB 🔴 +1.3 kB 🔴 +1.13 kB
assets/auth-CmWROCuB.js (removed) 3.69 kB 🟢 -3.69 kB 🟢 -1.3 kB 🟢 -1.14 kB
assets/usePostAuthRedirect-B8-d5-WT.js (removed) 3.33 kB 🟢 -3.33 kB 🟢 -1.27 kB 🟢 -1.11 kB
assets/usePostAuthRedirect-BRsFc8m1.js (new) 3.33 kB 🔴 +3.33 kB 🔴 +1.27 kB 🔴 +1.11 kB
assets/UpdatePasswordContent-CilbWJRI.js (new) 1.92 kB 🔴 +1.92 kB 🔴 +877 B 🔴 +767 B
assets/UpdatePasswordContent-CqP9vDQy.js (removed) 1.92 kB 🟢 -1.92 kB 🟢 -877 B 🟢 -766 B
assets/authStore-BmyKnU_M.js (removed) 130 B 🟢 -130 B 🟢 -109 B 🟢 -106 B
assets/authStore-C9defxKg.js (new) 130 B 🔴 +130 B 🔴 +109 B 🔴 +105 B
assets/workspaceAuthStore-BoRl89r2.js (new) 110 B 🔴 +110 B 🔴 +104 B 🔴 +114 B
assets/workspaceAuthStore-uLvbjJDF.js (removed) 110 B 🟢 -110 B 🟢 -104 B 🟢 -114 B
assets/auth-B0kqOQ8U.js (removed) 105 B 🟢 -105 B 🟢 -96 B 🟢 -87 B
assets/auth-DXgU0clc.js (new) 105 B 🔴 +105 B 🔴 +96 B 🔴 +85 B

Status: 7 added / 7 removed / 3 unchanged

Editors & Dialogs — 117 kB (baseline 117 kB) • ⚪ 0 B

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-DIsONf-S.js (new) 90.5 kB 🔴 +90.5 kB 🔴 +19.3 kB 🔴 +16.5 kB
assets/ComfyHubPublishDialog-Dmyy7LaN.js (removed) 90.5 kB 🟢 -90.5 kB 🟢 -19.3 kB 🟢 -16.5 kB
assets/useShareDialog-BgmezoPQ.js (removed) 23.7 kB 🟢 -23.7 kB 🟢 -5.58 kB 🟢 -4.97 kB
assets/useShareDialog-zKTDSJpc.js (new) 23.7 kB 🔴 +23.7 kB 🔴 +5.58 kB 🔴 +4.97 kB
assets/ComfyHubPublishDialog-Brw0jWQM.js (removed) 143 B 🟢 -143 B 🟢 -105 B 🟢 -90 B
assets/ComfyHubPublishDialog-CGV0fCoM.js (new) 143 B 🔴 +143 B 🔴 +105 B 🔴 +97 B
assets/useSubscriptionDialog-C7iQafez.js (removed) 110 B 🟢 -110 B 🟢 -102 B 🟢 -88 B
assets/useSubscriptionDialog-CPUJ4_w2.js (new) 110 B 🔴 +110 B 🔴 +102 B 🔴 +90 B

Status: 4 added / 4 removed / 1 unchanged

UI Components — 57.5 kB (baseline 57.5 kB) • ⚪ 0 B

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-BcVVxec6.js (new) 13.6 kB 🔴 +13.6 kB 🔴 +3.82 kB 🔴 +3.41 kB
assets/ComfyQueueButton-CB2pB8Js.js (removed) 13.6 kB 🟢 -13.6 kB 🟢 -3.82 kB 🟢 -3.41 kB
assets/useTerminalTabs-B6awsqn2.js (new) 12.1 kB 🔴 +12.1 kB 🔴 +3.83 kB 🔴 +3.38 kB
assets/useTerminalTabs-BtU7mTja.js (removed) 12.1 kB 🟢 -12.1 kB 🟢 -3.83 kB 🟢 -3.38 kB
assets/SubscribeButton-BojS_yXF.js (removed) 2.38 kB 🟢 -2.38 kB 🟢 -1.05 kB 🟢 -917 B
assets/SubscribeButton-C1gPMbRk.js (new) 2.38 kB 🔴 +2.38 kB 🔴 +1.05 kB 🔴 +921 B
assets/cloudFeedbackTopbarButton-CghUD1Mo.js (removed) 829 B 🟢 -829 B 🟢 -497 B 🟢 -419 B
assets/cloudFeedbackTopbarButton-CncKpqIt.js (new) 829 B 🔴 +829 B 🔴 +494 B 🔴 +417 B
assets/ComfyQueueButton-C6fRv7sQ.js (new) 128 B 🔴 +128 B 🔴 +99 B 🔴 +90 B
assets/ComfyQueueButton-o0-x9rcY.js (removed) 128 B 🟢 -128 B 🟢 -99 B 🟢 -95 B

Status: 5 added / 5 removed / 8 unchanged

Data & Services — 270 kB (baseline 270 kB) • ⚪ 0 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/load3dService-BYbhhqCu.js (removed) 127 kB 🟢 -127 kB 🟢 -27.8 kB 🟢 -23.5 kB
assets/load3dService-BzotA-DJ.js (new) 127 kB 🔴 +127 kB 🔴 +27.8 kB 🔴 +23.5 kB
assets/api-CCNsudeG.js (new) 91.9 kB 🔴 +91.9 kB 🔴 +25.4 kB 🔴 +21.7 kB
assets/api-DSBVr2Zr.js (removed) 91.9 kB 🟢 -91.9 kB 🟢 -25.4 kB 🟢 -21.7 kB
assets/workflowShareService-BMFqN775.js (removed) 17 kB 🟢 -17 kB 🟢 -5.01 kB 🟢 -4.44 kB
assets/workflowShareService-DygaBPcP.js (new) 17 kB 🔴 +17 kB 🔴 +5.01 kB 🔴 +4.44 kB
assets/releaseStore-B-8mEKZZ.js (new) 8.29 kB 🔴 +8.29 kB 🔴 +2.34 kB 🔴 +2.04 kB
assets/releaseStore-sCo-3SGA.js (removed) 8.29 kB 🟢 -8.29 kB 🟢 -2.34 kB 🟢 -2.04 kB
assets/keybindingService-BEXYqYJ7.js (removed) 7.46 kB 🟢 -7.46 kB 🟢 -1.92 kB 🟢 -1.65 kB
assets/keybindingService-Ci8Q-iRK.js (new) 7.46 kB 🔴 +7.46 kB 🔴 +1.92 kB 🔴 +1.64 kB
assets/extensionStore-BKs9KAjA.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.57 kB
assets/extensionStore-EgmoLuYi.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.57 kB
assets/userStore-BUKMKG85.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +932 B 🔴 +825 B
assets/userStore-D8wpzmt9.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -931 B 🟢 -821 B
assets/audioService-D5xQsd0E.js (new) 1.76 kB 🔴 +1.76 kB 🔴 +859 B 🔴 +752 B
assets/audioService-DwpKnBWb.js (removed) 1.76 kB 🟢 -1.76 kB 🟢 -858 B 🟢 -750 B
assets/dialogService-DJuTDehW.js (removed) 100 B 🟢 -100 B 🟢 -99 B 🟢 -94 B
assets/dialogService-QeuY3FZu.js (new) 100 B 🔴 +100 B 🔴 +99 B 🔴 +99 B
assets/settingStore-BolNJB15.js (new) 98 B 🔴 +98 B 🔴 +98 B 🔴 +98 B
assets/settingStore-PsVZgHXF.js (removed) 98 B 🟢 -98 B 🟢 -98 B 🟢 -89 B
assets/assetsStore-Cc3SYfwq.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +100 B
assets/assetsStore-DtV0HmMw.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -99 B
assets/releaseStore-C4OeTDtI.js (new) 95 B 🔴 +95 B 🔴 +86 B 🔴 +88 B
assets/releaseStore-CnAQhMam.js (removed) 95 B 🟢 -95 B 🟢 -86 B 🟢 -82 B
assets/api-DazOv-dG.js (new) 62 B 🔴 +62 B 🔴 +74 B 🔴 +66 B
assets/api-Do7WPgJa.js (removed) 62 B 🟢 -62 B 🟢 -74 B 🟢 -66 B

Status: 13 added / 13 removed / 3 unchanged

Utilities & Hooks — 3.39 MB (baseline 3.39 MB) • 🔴 +63 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/promotionUtils-BJ6ljnoF.js (new) 3.03 MB 🔴 +3.03 MB 🔴 +699 kB 🔴 +527 kB
assets/promotionUtils-CAnvd6BK.js (removed) 3.03 MB 🟢 -3.03 MB 🟢 -699 kB 🟢 -527 kB
assets/useConflictDetection-CVivrAQ3.js (new) 234 kB 🔴 +234 kB 🔴 +52.3 kB 🔴 +42.5 kB
assets/useConflictDetection-DdxXltGb.js (removed) 234 kB 🟢 -234 kB 🟢 -52.3 kB 🟢 -42.6 kB
assets/useLoad3d-CTO0XQCv.js (new) 25.5 kB 🔴 +25.5 kB 🔴 +5.75 kB 🔴 +5.08 kB
assets/useLoad3d-VmqkpcQi.js (removed) 25.5 kB 🟢 -25.5 kB 🟢 -5.75 kB 🟢 -5.1 kB
assets/useLoad3dViewer-5JWv76eE.js (new) 21.1 kB 🔴 +21.1 kB 🔴 +4.98 kB 🔴 +4.38 kB
assets/useLoad3dViewer-DSgD8f0P.js (removed) 21.1 kB 🟢 -21.1 kB 🟢 -4.98 kB 🟢 -4.35 kB
assets/useFeatureFlags-4P88skLW.js (new) 6.51 kB 🔴 +6.51 kB 🔴 +2.02 kB 🔴 +1.7 kB
assets/useFeatureFlags-DTari-5b.js (removed) 6.51 kB 🟢 -6.51 kB 🟢 -2.02 kB 🟢 -1.7 kB
assets/downloadUtil-DCVkAyLs.js (removed) 4.68 kB 🟢 -4.68 kB 🟢 -1.85 kB 🟢 -1.54 kB
assets/downloadUtil-DmX9JbHQ.js (new) 4.68 kB 🔴 +4.68 kB 🔴 +1.85 kB 🔴 +1.54 kB
assets/subscriptionCheckoutUtil-BTjuQnnt.js (removed) 3.85 kB 🟢 -3.85 kB 🟢 -1.54 kB 🟢 -1.35 kB
assets/subscriptionCheckoutUtil-CkbXc6EN.js (new) 3.85 kB 🔴 +3.85 kB 🔴 +1.54 kB 🔴 +1.35 kB
assets/useSessionCookie-De_QoYw_.js (removed) 3.61 kB 🟢 -3.61 kB 🟢 -1.21 kB 🟢 -1.03 kB
assets/useSessionCookie-U5KPjbsQ.js (new) 3.61 kB 🔴 +3.61 kB 🔴 +1.21 kB 🔴 +1.04 kB
assets/useExternalLink-BYAZ0V_m.js (removed) 3.03 kB 🟢 -3.03 kB 🟢 -1.16 kB 🟢 -1.03 kB
assets/useExternalLink-Dk7b7WXp.js (new) 3.03 kB 🔴 +3.03 kB 🔴 +1.15 kB 🔴 +1.02 kB
assets/useDowngradeToPersonal-CGwBUgM_.js (new) 3 kB 🔴 +3 kB 🔴 +1.18 kB 🔴 +1.02 kB
assets/useDowngradeToPersonal-mVlfnOLw.js (removed) 3 kB 🟢 -3 kB 🟢 -1.19 kB 🟢 -1.05 kB
assets/assetPreviewUtil-8JB-lRLK.js (new) 2.41 kB 🔴 +2.41 kB 🔴 +1 kB 🔴 +880 B
assets/assetPreviewUtil-a491P3la.js (removed) 2.41 kB 🟢 -2.41 kB 🟢 -1.01 kB 🟢 -874 B
assets/useUpstreamValue-B5mHRVPP.js (removed) 2.04 kB 🟢 -2.04 kB 🟢 -793 B 🟢 -698 B
assets/useUpstreamValue-CxhnzEdJ.js (new) 2.04 kB 🔴 +2.04 kB 🔴 +792 B 🔴 +703 B
assets/useWorkspaceTierLabel-BAJtOtoB.js (new) 1.99 kB 🔴 +1.99 kB 🔴 +852 B 🔴 +738 B
assets/useWorkspaceTierLabel-GILZlKqW.js (removed) 1.99 kB 🟢 -1.99 kB 🟢 -853 B 🟢 -739 B
assets/useErrorHandling-Cg7-J9RO.js (removed) 1.54 kB 🟢 -1.54 kB 🟢 -648 B 🟢 -555 B
assets/useErrorHandling-DVKRShRS.js (new) 1.54 kB 🔴 +1.54 kB 🔴 +645 B 🔴 +552 B
assets/useLoad3d-Cq0BD6kq.js (removed) 311 B 🟢 -311 B 🟢 -162 B 🟢 -146 B
assets/useLoad3d-DsXdtTk-.js (new) 311 B 🔴 +311 B 🔴 +163 B 🔴 +147 B
assets/useSessionCookie-Dy6UwRBT.js (removed) 101 B 🟢 -101 B 🟢 -86 B 🟢 -82 B
assets/useSessionCookie-p-rZHGj0.js (new) 101 B 🔴 +101 B 🔴 +86 B 🔴 +83 B
assets/useFeatureFlags-Bl7LpzkM.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +82 B
assets/useFeatureFlags-BZ-yUaXW.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -80 B
assets/useLoad3dViewer-TQ4cHR_z.js (removed) 98 B 🟢 -98 B 🟢 -85 B 🟢 -92 B
assets/useLoad3dViewer-ZcAfd1NV.js (new) 98 B 🔴 +98 B 🔴 +85 B 🔴 +85 B
assets/useCurrentUser-Cb84XXQO.js (new) 96 B 🔴 +96 B 🔴 +97 B 🔴 +90 B
assets/useCurrentUser-Cc2J5Hm0.js (removed) 96 B 🟢 -96 B 🟢 -97 B 🟢 -82 B

Status: 19 added / 19 removed / 16 unchanged

Vendor & Third-Party — 15.3 MB (baseline 15.3 MB) • ⚪ 0 B

External libraries and shared vendor chunks

Status: 16 unchanged

Other — 11.7 MB (baseline 11.7 MB) • 🔴 +735 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/main-DLNy4UMu.js (new) 186 kB 🔴 +186 kB 🔴 +54.4 kB 🔴 +45.7 kB
assets/main-DZFIUdDW.js (removed) 185 kB 🟢 -185 kB 🟢 -54.3 kB 🟢 -45.6 kB
assets/core-BndCaOlh.js (removed) 121 kB 🟢 -121 kB 🟢 -31 kB 🟢 -26.2 kB
assets/core-CjUBrDb7.js (new) 121 kB 🔴 +121 kB 🔴 +31 kB 🔴 +26.2 kB
assets/WidgetSelect-B_dvwEBt.js (new) 89.3 kB 🔴 +89.3 kB 🔴 +20.1 kB 🔴 +17.2 kB
assets/WidgetSelect-CPkn99GX.js (removed) 89.3 kB 🟢 -89.3 kB 🟢 -20.1 kB 🟢 -17.3 kB
assets/Load3DControls-DmAasG7y.js (removed) 46.8 kB 🟢 -46.8 kB 🟢 -7.56 kB 🟢 -6.62 kB
assets/Load3DControls-DUUw0iY9.js (new) 46.8 kB 🔴 +46.8 kB 🔴 +7.56 kB 🔴 +6.62 kB
assets/SubscriptionTransitionPreviewWorkspace-0mC9k2qN.js (new) 46.8 kB 🔴 +46.8 kB 🔴 +9.65 kB 🔴 +8.54 kB
assets/SubscriptionTransitionPreviewWorkspace-CNcUQ5jv.js (removed) 46.8 kB 🟢 -46.8 kB 🟢 -9.65 kB 🟢 -8.53 kB
assets/SubscriptionRequiredDialogContentUnified-CwnoGc6b.js (new) 41.2 kB 🔴 +41.2 kB 🔴 +9.16 kB 🔴 +7.97 kB
assets/SubscriptionRequiredDialogContentUnified-DwoCvfjM.js (removed) 41.2 kB 🟢 -41.2 kB 🟢 -9.16 kB 🟢 -7.97 kB
assets/WorkspacePanelContent-BYh6GbWL.js (removed) 34.5 kB 🟢 -34.5 kB 🟢 -7.5 kB 🟢 -6.61 kB
assets/WorkspacePanelContent-CwQLEf7O.js (new) 34.5 kB 🔴 +34.5 kB 🔴 +7.49 kB 🔴 +6.61 kB
assets/WidgetPainter-Bdb6OURW.js (removed) 32.7 kB 🟢 -32.7 kB 🟢 -7.9 kB 🟢 -7.01 kB
assets/WidgetPainter-w-qfF3vY.js (new) 32.7 kB 🔴 +32.7 kB 🔴 +7.9 kB 🔴 +7 kB
assets/Load3dViewerContent-Bf4tJHO1.js (new) 30.9 kB 🔴 +30.9 kB 🔴 +6.3 kB 🔴 +5.46 kB
assets/Load3dViewerContent-BY45hJlb.js (removed) 30.9 kB 🟢 -30.9 kB 🟢 -6.3 kB 🟢 -5.47 kB
assets/HdrViewerContent-BzGsp-je.js (new) 29.2 kB 🔴 +29.2 kB 🔴 +8.09 kB 🔴 +7.14 kB
assets/HdrViewerContent-CfCMmFSa.js (removed) 29.2 kB 🟢 -29.2 kB 🟢 -8.09 kB 🟢 -7.14 kB
assets/WidgetBoundingBoxes-dYzCqtv5.js (removed) 28.6 kB 🟢 -28.6 kB 🟢 -7.89 kB 🟢 -7.01 kB
assets/WidgetBoundingBoxes-pn8hbA5q.js (new) 28.6 kB 🔴 +28.6 kB 🔴 +7.89 kB 🔴 +7 kB
assets/SubscriptionRequiredDialogContent-BoAgC0wv.js (new) 27.4 kB 🔴 +27.4 kB 🔴 +6.75 kB 🔴 +5.96 kB
assets/SubscriptionRequiredDialogContent-C-4i4flH.js (removed) 27.4 kB 🟢 -27.4 kB 🟢 -6.74 kB 🟢 -5.96 kB
assets/SubscriptionPanelContentWorkspace-BfZZ3bUL.js (removed) 25 kB 🟢 -25 kB 🟢 -5.84 kB 🟢 -5.13 kB
assets/SubscriptionPanelContentWorkspace-DBDxw149.js (new) 25 kB 🔴 +25 kB 🔴 +5.84 kB 🔴 +5.13 kB
assets/SubscriptionRequiredDialogContentWorkspace--rJ5sCX6.js (removed) 24.6 kB 🟢 -24.6 kB 🟢 -5.65 kB 🟢 -4.97 kB
assets/SubscriptionRequiredDialogContentWorkspace-CXbC09k-.js (new) 24.6 kB 🔴 +24.6 kB 🔴 +5.66 kB 🔴 +4.97 kB
assets/WidgetImageCrop-DaZfKttD.js (new) 23.3 kB 🔴 +23.3 kB 🔴 +5.75 kB 🔴 +5.06 kB
assets/WidgetImageCrop-DxxYPWGM.js (removed) 23.3 kB 🟢 -23.3 kB 🟢 -5.75 kB 🟢 -5.05 kB
assets/load3d-CXgu-GqA.js (removed) 21.3 kB 🟢 -21.3 kB 🟢 -5.19 kB 🟢 -4.5 kB
assets/load3d-DjdAVcTL.js (new) 21.3 kB 🔴 +21.3 kB 🔴 +5.19 kB 🔴 +4.5 kB
assets/CurrentUserPopoverWorkspace-IjNfOyM2.js (new) 20.6 kB 🔴 +20.6 kB 🔴 +4.74 kB 🔴 +4.22 kB
assets/CurrentUserPopoverWorkspace-ojJlo62-.js (removed) 20.6 kB 🟢 -20.6 kB 🟢 -4.75 kB 🟢 -4.23 kB
assets/SignInContent-BIwPaLQP.js (new) 20.1 kB 🔴 +20.1 kB 🔴 +5.07 kB 🔴 +4.43 kB
assets/SignInContent-BzZw4Oy8.js (removed) 20.1 kB 🟢 -20.1 kB 🟢 -5.07 kB 🟢 -4.42 kB
assets/WidgetInputNumber-C-K2-SfW.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.82 kB 🟢 -4.28 kB
assets/WidgetInputNumber-KCzxPBDQ.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.82 kB 🔴 +4.28 kB
assets/Load3D-BKmdDpiq.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.52 kB 🔴 +3.94 kB
assets/Load3D-Cu20VI3v.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.52 kB 🟢 -3.93 kB
assets/CreditsTile-B_fuEGR7.js (new) 17.1 kB 🔴 +17.1 kB 🔴 +4.54 kB 🔴 +4.01 kB
assets/CreditsTile-CA0hjQ53.js (removed) 17.1 kB 🟢 -17.1 kB 🟢 -4.54 kB 🟢 -4.01 kB
assets/WidgetRecordAudio-BiLcyv9Y.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.63 kB 🔴 +4.14 kB
assets/WidgetRecordAudio-J7O8UmR4.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.63 kB 🟢 -4.14 kB
assets/WidgetRange-BakrJWvJ.js (new) 16.2 kB 🔴 +16.2 kB 🔴 +4.16 kB 🔴 +3.72 kB
assets/WidgetRange-BHI3AZJE.js (removed) 16.2 kB 🟢 -16.2 kB 🟢 -4.17 kB 🟢 -3.73 kB
assets/WaveAudioPlayer-632sHRxO.js (new) 12.8 kB 🔴 +12.8 kB 🔴 +3.48 kB 🔴 +3.06 kB
assets/WaveAudioPlayer-BXP9kC2u.js (removed) 12.8 kB 🟢 -12.8 kB 🟢 -3.48 kB 🟢 -3.06 kB
assets/i18n-B_viwuTg.js (new) 12.2 kB 🔴 +12.2 kB 🔴 +3.24 kB 🔴 +2.72 kB
assets/i18n-DzXpZmTP.js (removed) 12.2 kB 🟢 -12.2 kB 🟢 -3.25 kB 🟢 -2.73 kB
assets/WidgetCurve-a5jNDLqp.js (removed) 11.3 kB 🟢 -11.3 kB 🟢 -3.5 kB 🟢 -3.16 kB
assets/WidgetCurve-BxbtiB75.js (new) 11.3 kB 🔴 +11.3 kB 🔴 +3.5 kB 🔴 +3.16 kB
assets/AudioPreviewPlayer-4lauO6SV.js (new) 10.6 kB 🔴 +10.6 kB 🔴 +3.06 kB 🔴 +2.73 kB
assets/AudioPreviewPlayer-XQ4BpgR4.js (removed) 10.6 kB 🟢 -10.6 kB 🟢 -3.06 kB 🟢 -2.73 kB
assets/TeamWorkspacesDialogContent-BPP7I_Yz.js (removed) 10.3 kB 🟢 -10.3 kB 🟢 -3 kB 🟢 -2.67 kB
assets/TeamWorkspacesDialogContent-CKnqJwab.js (new) 10.3 kB 🔴 +10.3 kB 🔴 +3 kB 🔴 +2.66 kB
assets/Load3DConfiguration-B3xtVu2y.js (removed) 9.02 kB 🟢 -9.02 kB 🟢 -2.66 kB 🟢 -2.35 kB
assets/Load3DConfiguration-XPJE29ps.js (new) 9.02 kB 🔴 +9.02 kB 🔴 +2.66 kB 🔴 +2.35 kB
assets/onboardingCloudRoutes-CMH7jenZ.js (removed) 8.5 kB 🟢 -8.5 kB 🟢 -2.66 kB 🟢 -2.29 kB
assets/onboardingCloudRoutes-M2Vec4VM.js (new) 8.5 kB 🔴 +8.5 kB 🔴 +2.67 kB 🔴 +2.3 kB
assets/nodeTemplates-BAJLO_DQ.js (removed) 8.33 kB 🟢 -8.33 kB 🟢 -2.88 kB 🟢 -2.54 kB
assets/nodeTemplates-BZnD7rXg.js (new) 8.33 kB 🔴 +8.33 kB 🔴 +2.88 kB 🔴 +2.54 kB
assets/NightlySurveyController-D0WSpuOK.js (removed) 7.95 kB 🟢 -7.95 kB 🟢 -2.7 kB 🟢 -2.39 kB
assets/NightlySurveyController-iPnb7A2S.js (new) 7.95 kB 🔴 +7.95 kB 🔴 +2.7 kB 🔴 +2.39 kB
assets/InviteMemberDialogContent-CoPwwZul.js (new) 6.76 kB 🔴 +6.76 kB 🔴 +2.22 kB 🔴 +1.96 kB
assets/InviteMemberDialogContent-eL9lEOhC.js (removed) 6.76 kB 🟢 -6.76 kB 🟢 -2.22 kB 🟢 -1.96 kB
assets/WidgetWithControl-Ew2Udouq.js (removed) 6.38 kB 🟢 -6.38 kB 🟢 -2.59 kB 🟢 -2.29 kB
assets/WidgetWithControl-Mqdg7cYx.js (new) 6.38 kB 🔴 +6.38 kB 🔴 +2.59 kB 🔴 +2.31 kB
assets/tierBenefits-CiqHtYAQ.js (removed) 6.02 kB 🟢 -6.02 kB 🟢 -1.93 kB 🟢 -1.67 kB
assets/tierBenefits-DHyG9SHL.js (new) 6.02 kB 🔴 +6.02 kB 🔴 +1.93 kB 🔴 +1.68 kB
assets/main-BojKUtmX.js (new) 5.78 kB 🔴 +5.78 kB 🔴 +1.84 kB 🔴 +1.56 kB
assets/CancelSubscriptionDialogContent-B7mz29ip.js (new) 5.76 kB 🔴 +5.76 kB 🔴 +1.97 kB 🔴 +1.72 kB
assets/CancelSubscriptionDialogContent-CJFyx2xw.js (removed) 5.76 kB 🟢 -5.76 kB 🟢 -1.97 kB 🟢 -1.73 kB
assets/main-Dx-U8fT7.js (removed) 5.75 kB 🟢 -5.75 kB 🟢 -1.83 kB 🟢 -1.58 kB
assets/load3dPreviewExtensions-B-NFBaAw.js (removed) 5.38 kB 🟢 -5.38 kB 🟢 -1.75 kB 🟢 -1.55 kB
assets/load3dPreviewExtensions-Z4VB60YS.js (new) 5.38 kB 🔴 +5.38 kB 🔴 +1.75 kB 🔴 +1.55 kB
assets/FreeTierDialogContent-1yu_QTwi.js (new) 5.25 kB 🔴 +5.25 kB 🔴 +1.76 kB 🔴 +1.55 kB
assets/FreeTierDialogContent-BmhERFNB.js (removed) 5.25 kB 🟢 -5.25 kB 🟢 -1.76 kB 🟢 -1.55 kB
assets/CreateWorkspaceDialogContent-u-Wnobhr.js (new) 5.19 kB 🔴 +5.19 kB 🔴 +1.82 kB 🔴 +1.58 kB
assets/CreateWorkspaceDialogContent-xQeEqvHe.js (removed) 5.19 kB 🟢 -5.19 kB 🟢 -1.83 kB 🟢 -1.58 kB
assets/missingModelDownload-DMGcrR4y.js (new) 5.07 kB 🔴 +5.07 kB 🔴 +1.98 kB 🔴 +1.73 kB
assets/missingModelDownload-Ds2ON5y7.js (removed) 5.07 kB 🟢 -5.07 kB 🟢 -1.98 kB 🟢 -1.72 kB
assets/ChangeMemberRoleDialogContent-Ci6tdkZD.js (new) 5.04 kB 🔴 +5.04 kB 🔴 +1.66 kB 🔴 +1.46 kB
assets/ChangeMemberRoleDialogContent-CZZMtSyI.js (removed) 5.04 kB 🟢 -5.04 kB 🟢 -1.67 kB 🟢 -1.46 kB
assets/EditWorkspaceDialogContent-C7TLFU9q.js (new) 5 kB 🔴 +5 kB 🔴 +1.79 kB 🔴 +1.56 kB
assets/EditWorkspaceDialogContent-C9I21ir_.js (removed) 5 kB 🟢 -5 kB 🟢 -1.79 kB 🟢 -1.55 kB
assets/WidgetTextarea-DeeTSPoP.js (removed) 4.86 kB 🟢 -4.86 kB 🟢 -1.89 kB 🟢 -1.66 kB
assets/WidgetTextarea-Dm6XSvdQ.js (new) 4.86 kB 🔴 +4.86 kB 🔴 +1.89 kB 🔴 +1.66 kB
assets/saveMesh-CSaxpe5k.js (removed) 4.81 kB 🟢 -4.81 kB 🟢 -1.55 kB 🟢 -1.38 kB
assets/saveMesh-MbL1mJxs.js (new) 4.81 kB 🔴 +4.81 kB 🔴 +1.56 kB 🔴 +1.37 kB
assets/Preview3d-B1GlO4vA.js (new) 4.59 kB 🔴 +4.59 kB 🔴 +1.43 kB 🔴 +1.23 kB
assets/Preview3d-c5TwGLb3.js (removed) 4.59 kB 🟢 -4.59 kB 🟢 -1.43 kB 🟢 -1.23 kB
assets/ValueControlPopover-CiZjp1SZ.js (new) 4.55 kB 🔴 +4.55 kB 🔴 +1.59 kB 🔴 +1.42 kB
assets/ValueControlPopover-CYwDvke_.js (removed) 4.55 kB 🟢 -4.55 kB 🟢 -1.59 kB 🟢 -1.42 kB
assets/ApiNodesSignInContent-BSqu3GEY.js (removed) 4.14 kB 🟢 -4.14 kB 🟢 -1.35 kB 🟢 -1.18 kB
assets/ApiNodesSignInContent-COchJfNK.js (new) 4.14 kB 🔴 +4.14 kB 🔴 +1.35 kB 🔴 +1.19 kB
assets/DeleteWorkspaceDialogContent-BNHsy2sd.js (removed) 3.91 kB 🟢 -3.91 kB 🟢 -1.47 kB 🟢 -1.27 kB
assets/DeleteWorkspaceDialogContent-F24aoeuH.js (new) 3.91 kB 🔴 +3.91 kB 🔴 +1.47 kB 🔴 +1.27 kB
assets/LeaveWorkspaceDialogContent-BkzPOAkN.js (removed) 3.73 kB 🟢 -3.73 kB 🟢 -1.42 kB 🟢 -1.23 kB
assets/LeaveWorkspaceDialogContent-jN5_iFcB.js (new) 3.73 kB 🔴 +3.73 kB 🔴 +1.41 kB 🔴 +1.22 kB
assets/RemoveMemberDialogContent-ChkNQtU1.js (new) 3.71 kB 🔴 +3.71 kB 🔴 +1.37 kB 🔴 +1.19 kB
assets/RemoveMemberDialogContent-DEMNjO8u.js (removed) 3.71 kB 🟢 -3.71 kB 🟢 -1.37 kB 🟢 -1.19 kB
assets/RevokeInviteDialogContent-BzQDGGBp.js (new) 3.63 kB 🔴 +3.63 kB 🔴 +1.38 kB 🔴 +1.2 kB
assets/RevokeInviteDialogContent-CErBkcSI.js (removed) 3.63 kB 🟢 -3.63 kB 🟢 -1.38 kB 🟢 -1.21 kB
assets/InviteMemberUpsellDialogContent-CXgg4Kr2.js (new) 3.52 kB 🔴 +3.52 kB 🔴 +1.27 kB 🔴 +1.1 kB
assets/InviteMemberUpsellDialogContent-Dnen5UM1.js (removed) 3.52 kB 🟢 -3.52 kB 🟢 -1.26 kB 🟢 -1.11 kB
assets/workspaceCheckoutTelemetry-B3apY6Ev.js (new) 3.47 kB 🔴 +3.47 kB 🔴 +1.56 kB 🔴 +1.36 kB
assets/workspaceCheckoutTelemetry-C5n7uow1.js (removed) 3.47 kB 🟢 -3.47 kB 🟢 -1.56 kB 🟢 -1.36 kB
assets/Media3DTop-D7TzFjtL.js (removed) 3.26 kB 🟢 -3.26 kB 🟢 -1.3 kB 🟢 -1.13 kB
assets/Media3DTop-DUJ2VukA.js (new) 3.26 kB 🔴 +3.26 kB 🔴 +1.3 kB 🔴 +1.13 kB
assets/GlobalToast-C4MBwiF8.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.08 kB
assets/GlobalToast-CeS2L3qR.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.08 kB
assets/load3dAdvanced-DK-VEHWw.js (new) 2.87 kB 🔴 +2.87 kB 🔴 +1.13 kB 🔴 +983 B
assets/load3dAdvanced-X3XVQrGX.js (removed) 2.87 kB 🟢 -2.87 kB 🟢 -1.13 kB 🟢 -1 kB
assets/SubscribeToRun-DJ4YTUHx.js (new) 2.56 kB 🔴 +2.56 kB 🔴 +1.11 kB 🔴 +973 B
assets/SubscribeToRun-FZ-GHN4-.js (removed) 2.56 kB 🟢 -2.56 kB 🟢 -1.11 kB 🟢 -974 B
assets/graphHasMissingNodes-C2I3kzkj.js (removed) 1.93 kB 🟢 -1.93 kB 🟢 -905 B 🟢 -798 B
assets/graphHasMissingNodes-df4AhtCH.js (new) 1.93 kB 🔴 +1.93 kB 🔴 +903 B 🔴 +798 B
assets/MediaAudioTop-BFVxNJyi.js (removed) 1.67 kB 🟢 -1.67 kB 🟢 -838 B 🟢 -697 B
assets/MediaAudioTop-CkeUOHuV.js (new) 1.67 kB 🔴 +1.67 kB 🔴 +837 B 🔴 +702 B
assets/signInSchema-csVm5xZL.js (removed) 1.6 kB 🟢 -1.6 kB 🟢 -585 B 🟢 -519 B
assets/signInSchema-DzF5bgyC.js (new) 1.6 kB 🔴 +1.6 kB 🔴 +586 B 🔴 +513 B
assets/CloudRunButtonWrapper-BJdRz-aZ.js (removed) 1.13 kB 🟢 -1.13 kB 🟢 -552 B 🟢 -492 B
assets/CloudRunButtonWrapper-DdhZ7x9i.js (new) 1.13 kB 🔴 +1.13 kB 🔴 +551 B 🔴 +516 B
assets/cloudSessionCookie-SyAplufI.js (removed) 991 B 🟢 -991 B 🟢 -467 B 🟢 -399 B
assets/cloudSessionCookie-U4wKlufz.js (new) 991 B 🔴 +991 B 🔴 +467 B 🔴 +397 B
assets/cloudBadges-BT4flKqk.js (new) 973 B 🔴 +973 B 🔴 +550 B 🔴 +494 B
assets/cloudBadges-DgZLgP4i.js (removed) 973 B 🟢 -973 B 🟢 -552 B 🟢 -495 B
assets/Load3DAdvanced-C38gGOUp.js (new) 813 B 🔴 +813 B 🔴 +454 B 🔴 +407 B
assets/Load3DAdvanced-DkH_3aWh.js (removed) 813 B 🟢 -813 B 🟢 -454 B 🟢 -407 B
assets/nightlyBadges-Bw5a6rgN.js (new) 464 B 🔴 +464 B 🔴 +304 B 🔴 +253 B
assets/nightlyBadges-Cs1wktNz.js (removed) 464 B 🟢 -464 B 🟢 -306 B 🟢 -253 B
assets/missingModelDownload-BrSOXS5m.js (new) 228 B 🔴 +228 B 🔴 +150 B 🔴 +130 B
assets/missingModelDownload-DEIDMpx7.js (removed) 228 B 🟢 -228 B 🟢 -151 B 🟢 -130 B
assets/SubscriptionPanelContentWorkspace-Co-BjU1T.js (removed) 179 B 🟢 -179 B 🟢 -117 B 🟢 -102 B
assets/SubscriptionPanelContentWorkspace-IQcDDg3J.js (new) 179 B 🔴 +179 B 🔴 +117 B 🔴 +90 B
assets/Load3dViewerContent-CVwALE14.js (new) 137 B 🔴 +137 B 🔴 +103 B 🔴 +92 B
assets/Load3dViewerContent-QMcPt0F0.js (removed) 137 B 🟢 -137 B 🟢 -103 B 🟢 -92 B
assets/Load3DAdvanced-BTcLkWOg.js (new) 122 B 🔴 +122 B 🔴 +97 B 🔴 +89 B
assets/Load3DAdvanced-C49NALhH.js (removed) 122 B 🟢 -122 B 🟢 -97 B 🟢 -91 B
assets/WidgetLegacy-FJPvxkOi.js (new) 119 B 🔴 +119 B 🔴 +108 B 🔴 +93 B
assets/WidgetLegacy-T_kNRN5w.js (removed) 119 B 🟢 -119 B 🟢 -108 B 🟢 -94 B
assets/workflowDraftStoreV2-D8Y_FuM2.js (new) 113 B 🔴 +113 B 🔴 +105 B 🔴 +117 B
assets/workflowDraftStoreV2-DOXhQ7C5.js (removed) 113 B 🟢 -113 B 🟢 -105 B 🟢 -109 B
assets/Load3D-Be3Cq9gs.js (removed) 98 B 🟢 -98 B 🟢 -89 B 🟢 -81 B
assets/Load3D-DKRN3qAb.js (new) 98 B 🔴 +98 B 🔴 +89 B 🔴 +81 B
assets/i18n-BSLQ9jus.js (removed) 97 B 🟢 -97 B 🟢 -92 B 🟢 -85 B
assets/i18n-ChWokSjt.js (new) 97 B 🔴 +97 B 🔴 +92 B 🔴 +87 B
assets/changeTracker-BzCL5_Mp.js (removed) 93 B 🟢 -93 B 🟢 -95 B 🟢 -81 B
assets/changeTracker-CoWS0iuV.js (new) 93 B 🔴 +93 B 🔴 +95 B 🔴 +80 B

Status: 75 added / 75 removed / 90 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.8 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 49.9 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 63.1 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 47.0 MB heap
large-graph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 56.4 MB heap
large-graph-pan: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 80.0 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 65.5 MB heap
minimap-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 61.7 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 45.0 MB heap
subgraph-idle: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 47.1 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 48.9 MB heap
subgraph-transition-enter: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 149ms TBT · 92.7 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 64.5 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 160.6 MB heap
vue-large-graph-pan: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 6ms TBT · 167.8 MB heap
workflow-execution: · 60.0 avg FPS · 59.7 P5 FPS ✅ (target: ≥52) · 0ms TBT · 59.4 MB heap

⚠️ 2 regressions detected

Show regressions
Metric Baseline PR (median) Δ Sig
canvas-zoom-sweep: task duration 325ms 377ms +16% ⚠️ z=2.2
minimap-idle: event listeners -197 6 -103% ⚠️ z=2.2
All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms -0% z=-0.9
canvas-idle: p95 frame time 17ms 17ms +0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 11ms 11ms -5% z=0.0
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 9 10 +11% z=-2.1
canvas-idle: task duration 420ms 383ms -9% z=-0.4
canvas-idle: script duration 16ms 16ms +1% z=-4.1
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 59.6 MB 61.8 MB +4%
canvas-idle: DOM nodes -275 -129 -53% z=-118.9
canvas-idle: event listeners -199 -98 -51% z=-23.0
canvas-mouse-sweep: avg frame time 17ms 17ms +0% z=-0.4
canvas-mouse-sweep: p95 frame time 17ms 17ms +0%
canvas-mouse-sweep: layout duration 3ms 4ms +6% z=-0.2
canvas-mouse-sweep: style recalc duration 37ms 44ms +20% z=0.5
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 72 75 +3% z=-1.8
canvas-mouse-sweep: task duration 771ms 853ms +11% z=-0.2
canvas-mouse-sweep: script duration 120ms 124ms +4% z=-1.7
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 47.1 MB 49.9 MB +6%
canvas-mouse-sweep: DOM nodes -269 -256 -5% z=-123.1
canvas-mouse-sweep: event listeners -199 -199 +0% z=-49.8
canvas-zoom-sweep: avg frame time 17ms 17ms +0% z=0.5
canvas-zoom-sweep: p95 frame time 17ms 17ms -0%
canvas-zoom-sweep: layout duration 1ms 1ms -8% z=-1.4
canvas-zoom-sweep: style recalc duration 17ms 18ms +4% z=-0.9
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 31 30 -3% z=-2.8
canvas-zoom-sweep: task duration 325ms 377ms +16% ⚠️ z=2.2
canvas-zoom-sweep: script duration 18ms 19ms +8% z=-2.7
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 53.2 MB 63.1 MB +19%
canvas-zoom-sweep: DOM nodes -241 -227 -6% z=-386.9
canvas-zoom-sweep: event listeners -186 -184 -1% z=-40.1
dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
dom-widget-clipping: p95 frame time 17ms 17ms -1%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 8ms 9ms +18% z=-1.1
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 11 12 +9% z=-2.2
dom-widget-clipping: task duration 380ms 367ms -4% z=0.1
dom-widget-clipping: script duration 59ms 57ms -3% z=-3.3
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 57.8 MB 47.0 MB -19%
dom-widget-clipping: DOM nodes -278 -128 -54% z=-105.5
dom-widget-clipping: event listeners -203 -101 -50% variance too high
large-graph-idle: avg frame time 17ms 17ms +0% z=-0.2
large-graph-idle: p95 frame time 17ms 17ms -0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 9ms 8ms -8% z=-3.8
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 10 9 -10% z=-8.3
large-graph-idle: task duration 491ms 525ms +7% z=-0.3
large-graph-idle: script duration 86ms 90ms +6% z=-1.2
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 57.3 MB 56.4 MB -2%
large-graph-idle: DOM nodes -264 -270 +2% z=-325.5
large-graph-idle: event listeners -197 -199 +1% z=-36.9
large-graph-pan: avg frame time 17ms 17ms +0% z=0.3
large-graph-pan: p95 frame time 17ms 17ms +0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 15ms 18ms +14% z=0.3
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 66 69 +5% z=-0.9
large-graph-pan: task duration 1014ms 1027ms +1% z=-1.3
large-graph-pan: script duration 370ms 374ms +1% z=-1.7
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 79.2 MB 80.0 MB +1%
large-graph-pan: DOM nodes 10 -130 -1400% z=-90.3
large-graph-pan: event listeners 6 -96 -1692% z=-121.3
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms -0%
large-graph-zoom: layout duration 7ms 7ms -3%
large-graph-zoom: style recalc duration 15ms 15ms +1%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 62 62 +0%
large-graph-zoom: task duration 1248ms 1241ms -1%
large-graph-zoom: script duration 477ms 470ms -2%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 63.7 MB 65.5 MB +3%
large-graph-zoom: DOM nodes 6 -139 -2417%
large-graph-zoom: event listeners 8 8 +0%
minimap-idle: avg frame time 17ms 17ms +0% z=-0.4
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 6ms 10ms +57% z=0.7
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 7 11 +50% z=1.3
minimap-idle: task duration 518ms 494ms -5% z=-0.7
minimap-idle: script duration 93ms 91ms -2% z=-0.7
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 56.1 MB 61.7 MB +10%
minimap-idle: DOM nodes -274 21 -108% z=1.3
minimap-idle: event listeners -197 6 -103% ⚠️ z=2.2
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms -0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 12ms 12ms -3% z=-0.8
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 47 48 +1% z=-0.8
subgraph-dom-widget-clipping: task duration 400ms 397ms -1% z=1.0
subgraph-dom-widget-clipping: script duration 130ms 120ms -7% z=-1.3
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 45.5 MB 45.0 MB -1%
subgraph-dom-widget-clipping: DOM nodes -275 -274 -0% z=-264.7
subgraph-dom-widget-clipping: event listeners -197 -197 +0% z=-36.6
subgraph-idle: avg frame time 17ms 17ms +0% z=-0.2
subgraph-idle: p95 frame time 17ms 17ms +0%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 10ms 10ms -1% z=-0.9
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 10 10 +0% z=-1.4
subgraph-idle: task duration 375ms 387ms +3% z=0.5
subgraph-idle: script duration 13ms 14ms +8% z=-2.4
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 48.8 MB 47.1 MB -4%
subgraph-idle: DOM nodes -289 -288 -1% z=-206.9
subgraph-idle: event listeners -199 -199 +0% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.4
subgraph-mouse-sweep: p95 frame time 17ms 17ms +0%
subgraph-mouse-sweep: layout duration 4ms 4ms -6% z=-1.6
subgraph-mouse-sweep: style recalc duration 40ms 38ms -5% z=-1.4
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 77 77 -1% z=-1.9
subgraph-mouse-sweep: task duration 715ms 695ms -3% z=-1.0
subgraph-mouse-sweep: script duration 92ms 91ms -1% z=-1.6
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 50.6 MB 48.9 MB -3%
subgraph-mouse-sweep: DOM nodes -234 -85 -64% z=-68.0
subgraph-mouse-sweep: event listeners -199 -98 -51% variance too high
subgraph-transition-enter: avg frame time 17ms 17ms -0%
subgraph-transition-enter: p95 frame time 17ms 17ms -1%
subgraph-transition-enter: layout duration 16ms 16ms +1%
subgraph-transition-enter: style recalc duration 32ms 32ms -0%
subgraph-transition-enter: layout count 14 14 +0%
subgraph-transition-enter: style recalc count 18 18 +0%
subgraph-transition-enter: task duration 785ms 755ms -4%
subgraph-transition-enter: script duration 31ms 29ms -8%
subgraph-transition-enter: TBT 156ms 149ms -4%
subgraph-transition-enter: heap used 92.7 MB 92.7 MB -0%
subgraph-transition-enter: DOM nodes 13673 13673 +0%
subgraph-transition-enter: event listeners 2531 2533 +0%
viewport-pan-sweep: avg frame time 17ms 17ms -0%
viewport-pan-sweep: p95 frame time 17ms 17ms +0%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 56ms 53ms -5%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 251 251 -0%
viewport-pan-sweep: task duration 3620ms 3687ms +2%
viewport-pan-sweep: script duration 1215ms 1217ms +0%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 67.7 MB 64.5 MB -5%
viewport-pan-sweep: DOM nodes 20 -272 -1460%
viewport-pan-sweep: event listeners 20 -183 -1015%
vue-large-graph-idle: avg frame time 17ms 17ms +0%
vue-large-graph-idle: p95 frame time 17ms 17ms -0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 12200ms 12136ms -1%
vue-large-graph-idle: script duration 551ms 550ms -0%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 162.6 MB 160.6 MB -1%
vue-large-graph-idle: DOM nodes -3301 -3300 -0%
vue-large-graph-idle: event listeners -16376 -16373 -0%
vue-large-graph-pan: avg frame time 17ms 17ms +0%
vue-large-graph-pan: p95 frame time 17ms 17ms +0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 17ms 17ms +0%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 77 72 -6%
vue-large-graph-pan: task duration 15331ms 15077ms -2%
vue-large-graph-pan: script duration 793ms 827ms +4%
vue-large-graph-pan: TBT 4ms 6ms +50%
vue-large-graph-pan: heap used 159.1 MB 167.8 MB +5%
vue-large-graph-pan: DOM nodes -3300 -5807 +76%
vue-large-graph-pan: event listeners -16376 -16368 -0%
workflow-execution: avg frame time 17ms 17ms -0% z=0.6
workflow-execution: p95 frame time 17ms 17ms +0%
workflow-execution: layout duration 1ms 1ms +3% z=-5.7
workflow-execution: style recalc duration 19ms 16ms -13% z=-3.7
workflow-execution: layout count 3 3 -17% z=-4.5
workflow-execution: style recalc count 13 10 -23% z=-3.8
workflow-execution: task duration 101ms 85ms -16% z=-3.5
workflow-execution: script duration 9ms 9ms -7% z=-6.9
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 60.9 MB 59.4 MB -3%
workflow-execution: DOM nodes 130 119 -9% z=-6.0
workflow-execution: event listeners 67 49 -27% z=-0.7
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-07-10T02:05:20.748Z",
  "gitSha": "cc3087253cad7e9ae558e64f0621871e392cf309",
  "branch": "benceruleanlu/gtm-93-desktop-login-completion",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2070.2269999999885,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 12.307999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 420.86,
      "heapDeltaBytes": -7373336,
      "heapUsedBytes": 62339656,
      "domNodes": -278,
      "jsHeapTotalBytes": 19283968,
      "scriptDurationMs": 16.833000000000002,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2008.5000000000264,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.319999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 346.07,
      "heapDeltaBytes": 3892280,
      "heapUsedBytes": 67283460,
      "domNodes": 20,
      "jsHeapTotalBytes": 15466496,
      "scriptDurationMs": 15.389,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1984.986000000049,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 53.077,
      "layouts": 12,
      "layoutDurationMs": 3.818,
      "taskDurationMs": 940.134,
      "heapDeltaBytes": -12362392,
      "heapUsedBytes": 57388168,
      "domNodes": -242,
      "jsHeapTotalBytes": 18759680,
      "scriptDurationMs": 129.43200000000002,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1802.5400000000218,
      "styleRecalcs": 72,
      "styleRecalcDurationMs": 35.192,
      "layouts": 12,
      "layoutDurationMs": 3.333,
      "taskDurationMs": 765.473,
      "heapDeltaBytes": -4755720,
      "heapUsedBytes": 47316420,
      "domNodes": -270,
      "jsHeapTotalBytes": 17690624,
      "scriptDurationMs": 119.39999999999999,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1783.350999999982,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 16.933999999999997,
      "layouts": 6,
      "layoutDurationMs": 0.559,
      "taskDurationMs": 372.413,
      "heapDeltaBytes": -3551068,
      "heapUsedBytes": 66221712,
      "domNodes": -224,
      "jsHeapTotalBytes": 11943936,
      "scriptDurationMs": 18.783,
      "eventListeners": -184,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1757.8469999999697,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 18.575000000000003,
      "layouts": 6,
      "layoutDurationMs": 0.6019999999999999,
      "taskDurationMs": 381.921,
      "heapDeltaBytes": -3665768,
      "heapUsedBytes": 66148488,
      "domNodes": -230,
      "jsHeapTotalBytes": 12730368,
      "scriptDurationMs": 19.480999999999998,
      "eventListeners": -184,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 619.8290000000384,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 9.765,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 389.942,
      "heapDeltaBytes": -23738084,
      "heapUsedBytes": 45752600,
      "domNodes": -275,
      "jsHeapTotalBytes": 6963200,
      "scriptDurationMs": 56.44199999999999,
      "eventListeners": -201,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 583.8449999999966,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 8.251,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 343.13699999999994,
      "heapDeltaBytes": -12209572,
      "heapUsedBytes": 52915656,
      "domNodes": 20,
      "jsHeapTotalBytes": 24076288,
      "scriptDurationMs": 57.755,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666682,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2044.7540000000117,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 8.75,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 522.577,
      "heapDeltaBytes": -8411500,
      "heapUsedBytes": 59027852,
      "domNodes": -268,
      "jsHeapTotalBytes": -1323008,
      "scriptDurationMs": 89.122,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2059.2980000000125,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.759999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 527.8209999999999,
      "heapDeltaBytes": -1155796,
      "heapUsedBytes": 59189016,
      "domNodes": -271,
      "jsHeapTotalBytes": -569344,
      "scriptDurationMs": 91.423,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2091.1289999999667,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 18.826,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1025.331,
      "heapDeltaBytes": 12453840,
      "heapUsedBytes": 85345104,
      "domNodes": 18,
      "jsHeapTotalBytes": 12378112,
      "scriptDurationMs": 376.005,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2109.2480000000933,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 16.191,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1028.497,
      "heapDeltaBytes": 20758084,
      "heapUsedBytes": 82326324,
      "domNodes": -278,
      "jsHeapTotalBytes": -626688,
      "scriptDurationMs": 371.551,
      "eventListeners": -197,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3115.0820000000294,
      "styleRecalcs": 62,
      "styleRecalcDurationMs": 15.067999999999998,
      "layouts": 60,
      "layoutDurationMs": 6.922999999999998,
      "taskDurationMs": 1250.582,
      "heapDeltaBytes": 14149680,
      "heapUsedBytes": 70555516,
      "domNodes": 6,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 468.325,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3096.3799999999537,
      "styleRecalcs": 62,
      "styleRecalcDurationMs": 15.294000000000002,
      "layouts": 60,
      "layoutDurationMs": 7.122,
      "taskDurationMs": 1230.5030000000002,
      "heapDeltaBytes": 12885768,
      "heapUsedBytes": 66829108,
      "domNodes": -284,
      "jsHeapTotalBytes": 0,
      "scriptDurationMs": 470.698,
      "eventListeners": 8,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "minimap-idle",
      "durationMs": 2020.0830000000565,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 10.532000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 494.243,
      "heapDeltaBytes": -8990068,
      "heapUsedBytes": 64435680,
      "domNodes": 22,
      "jsHeapTotalBytes": 10104832,
      "scriptDurationMs": 91.859,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2019.8739999999589,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.759,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 494.59799999999996,
      "heapDeltaBytes": -8914360,
      "heapUsedBytes": 65028600,
      "domNodes": 20,
      "jsHeapTotalBytes": 8531968,
      "scriptDurationMs": 90.484,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 580.8949999999982,
      "styleRecalcs": 47,
      "styleRecalcDurationMs": 11.549999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 396.33599999999996,
      "heapDeltaBytes": -22145096,
      "heapUsedBytes": 47535344,
      "domNodes": -275,
      "jsHeapTotalBytes": 5652480,
      "scriptDurationMs": 115.836,
      "eventListeners": -197,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66666666666665,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 607.0609999999306,
      "styleRecalcs": 48,
      "styleRecalcDurationMs": 12.331,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 397.373,
      "heapDeltaBytes": -23140132,
      "heapUsedBytes": 46733696,
      "domNodes": -273,
      "jsHeapTotalBytes": 5652480,
      "scriptDurationMs": 124.04700000000001,
      "eventListeners": -197,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.699999999999818
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2012.4649999999633,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 9.434000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 381.692,
      "heapDeltaBytes": -3485588,
      "heapUsedBytes": 48929684,
      "domNodes": -285,
      "jsHeapTotalBytes": 17166336,
      "scriptDurationMs": 13.314,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2034.084000000007,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 10.042,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 392.19399999999996,
      "heapDeltaBytes": -2469596,
      "heapUsedBytes": 49850708,
      "domNodes": -290,
      "jsHeapTotalBytes": 17952768,
      "scriptDurationMs": 14.329999999999998,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1756.9780000000037,
      "styleRecalcs": 77,
      "styleRecalcDurationMs": 39.220000000000006,
      "layouts": 16,
      "layoutDurationMs": 4.1899999999999995,
      "taskDurationMs": 723.428,
      "heapDeltaBytes": -16536160,
      "heapUsedBytes": 53163832,
      "domNodes": -232,
      "jsHeapTotalBytes": 18759680,
      "scriptDurationMs": 90.532,
      "eventListeners": -199,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1708.2470000000285,
      "styleRecalcs": 76,
      "styleRecalcDurationMs": 36.223,
      "layouts": 16,
      "layoutDurationMs": 4.181000000000001,
      "taskDurationMs": 666.404,
      "heapDeltaBytes": -9575108,
      "heapUsedBytes": 49380804,
      "domNodes": 62,
      "jsHeapTotalBytes": 26214400,
      "scriptDurationMs": 90.494,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-transition-enter",
      "durationMs": 984.6099999999751,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 32.12800000000001,
      "layouts": 14,
      "layoutDurationMs": 15.925999999999998,
      "taskDurationMs": 755.301,
      "heapDeltaBytes": 29945288,
      "heapUsedBytes": 97151624,
      "domNodes": 13673,
      "jsHeapTotalBytes": 15466496,
      "scriptDurationMs": 28.569999999999997,
      "eventListeners": 2533,
      "totalBlockingTimeMs": 149,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8131.411000000015,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 50.939,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3606.746,
      "heapDeltaBytes": -1501348,
      "heapUsedBytes": 66061092,
      "domNodes": -271,
      "jsHeapTotalBytes": -69632,
      "scriptDurationMs": 1196.696,
      "eventListeners": -183,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.80000000000109
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8158.192999999983,
      "styleRecalcs": 251,
      "styleRecalcDurationMs": 55.118,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3768.0289999999995,
      "heapDeltaBytes": 8920504,
      "heapUsedBytes": 69157048,
      "domNodes": -273,
      "jsHeapTotalBytes": -364544,
      "scriptDurationMs": 1237.947,
      "eventListeners": -183,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12108.855000000005,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12086.460000000001,
      "heapDeltaBytes": -43955296,
      "heapUsedBytes": 167138788,
      "domNodes": -3300,
      "jsHeapTotalBytes": 5476352,
      "scriptDurationMs": 534.917,
      "eventListeners": -16376,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12217.73399999995,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12186.124000000002,
      "heapDeltaBytes": -13999040,
      "heapUsedBytes": 169669204,
      "domNodes": -3300,
      "jsHeapTotalBytes": 17563648,
      "scriptDurationMs": 566.0019999999998,
      "eventListeners": -16370,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 15217.557999999997,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 17.38500000000004,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 15173.73,
      "heapDeltaBytes": -35410960,
      "heapUsedBytes": 172258100,
      "domNodes": -8314,
      "jsHeapTotalBytes": 18059264,
      "scriptDurationMs": 853.0409999999999,
      "eventListeners": -16372,
      "totalBlockingTimeMs": 12,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 15004.467999999975,
      "styleRecalcs": 69,
      "styleRecalcDurationMs": 17.217999999999954,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14980.99,
      "heapDeltaBytes": -13135852,
      "heapUsedBytes": 179687560,
      "domNodes": -3300,
      "jsHeapTotalBytes": 12496896,
      "scriptDurationMs": 800.5980000000001,
      "eventListeners": -16364,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "workflow-execution",
      "durationMs": 435.80500000007305,
      "styleRecalcs": 11,
      "styleRecalcDurationMs": 16.182000000000002,
      "layouts": 3,
      "layoutDurationMs": 0.6090000000000002,
      "taskDurationMs": 94.10400000000001,
      "heapDeltaBytes": 4877580,
      "heapUsedBytes": 56941640,
      "domNodes": 128,
      "jsHeapTotalBytes": 524288,
      "scriptDurationMs": 8.645999999999999,
      "eventListeners": 65,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66666666666665,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "workflow-execution",
      "durationMs": 112.2330000000602,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 15.938,
      "layouts": 2,
      "layoutDurationMs": 0.838,
      "taskDurationMs": 75.80300000000001,
      "heapDeltaBytes": 2980856,
      "heapUsedBytes": 67584680,
      "domNodes": 109,
      "jsHeapTotalBytes": 2883584,
      "scriptDurationMs": 8.635,
      "eventListeners": 33,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    }
  ]
}

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

Actionable comments posted: 3

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@src/composables/useUrlActionLoaders.ts`:
- Around line 21-36: `runUrlActionLoaders` currently awaits
`desktopLoginRedemption.redeemIfPresent()` before any other URL-action handling,
which can block unrelated loaders. Update `useUrlActionLoaders` so the desktop
login redemption and the other independent loaders are started together, for
example by collecting them into a `Promise.allSettled` (or equivalent parallel
flow) inside `runUrlActionLoaders`. Keep the existing error handling around
`desktopLoginRedemption` and ensure the invite/create_workspace/pricing paths
can proceed without waiting on the desktop login flow.

In `@src/platform/cloud/onboarding/CloudSignupView.vue`:
- Around line 166-169: The call to useDesktopLoginRedemption().redeemIfPresent()
is only being silenced with void, so any rejection can still become an unhandled
promise rejection. Update the CloudSignupView setup flow to attach explicit
error handling to redeemIfPresent(), matching the pattern used by
usePostAuthRedirect and useUrlActionLoaders, so failures are caught and the
pre-auth path still exits silently.

In `@src/platform/cloud/onboarding/composables/useDesktopLoginRedemption.ts`:
- Around line 144-152: The redeemOnce flow waits on authStore.isInitialized
without a bound and can hang forever, blocking later URL loaders. Update
redeemOnce in useDesktopLoginRedemption to add a timeout around until(() =>
authStore.isInitialized).toBe(true), and if it times out, handle it the same as
the “no session yet” path so the code stash is kept for a later retry.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 493f6d38-4ded-4433-bb67-014f9ec4648a

📥 Commits

Reviewing files that changed from the base of the PR and between 7610a61 and 24f6f39.

📒 Files selected for processing (12)
  • src/composables/useUrlActionLoaders.test.ts
  • src/composables/useUrlActionLoaders.ts
  • src/locales/en/main.json
  • src/platform/cloud/onboarding/CloudLoginView.vue
  • src/platform/cloud/onboarding/CloudSignupView.vue
  • src/platform/cloud/onboarding/CloudSurveyView.vue
  • src/platform/cloud/onboarding/UserCheckView.vue
  • src/platform/cloud/onboarding/composables/useDesktopLoginRedemption.test.ts
  • src/platform/cloud/onboarding/composables/useDesktopLoginRedemption.ts
  • src/platform/cloud/onboarding/composables/usePostAuthRedirect.ts
  • src/platform/navigation/preservedQueryNamespaces.ts
  • src/router.ts

Comment thread src/composables/useUrlActionLoaders.ts Outdated
Comment thread src/platform/cloud/onboarding/CloudSignupView.vue Outdated
Comment thread src/platform/cloud/onboarding/composables/useDesktopLoginRedemption.ts Outdated
@codecov

codecov Bot commented Jul 2, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 98.00000% with 2 lines in your changes missing coverage. Please review.

Files with missing lines Patch % Lines
...latform/cloud/onboarding/desktopLoginRedemption.ts 98.98% 1 Missing ⚠️
src/router.ts 0.00% 1 Missing ⚠️
@@            Coverage Diff             @@
##             main   #13418      +/-   ##
==========================================
+ Coverage   77.82%   77.92%   +0.09%     
==========================================
  Files        1648     1658      +10     
  Lines       92736   111903   +19167     
  Branches    31842    37651    +5809     
==========================================
+ Hits        72176    87204   +15028     
- Misses      19917    23803    +3886     
- Partials      643      896     +253     
Flag Coverage Δ
unit 65.94% <98.00%> (+0.31%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Files with missing lines Coverage Δ
...rc/platform/navigation/preservedQueryNamespaces.ts 100.00% <ø> (ø)
...latform/cloud/onboarding/desktopLoginRedemption.ts 98.98% <98.98%> (ø)
src/router.ts 49.53% <0.00%> (+9.37%) ⬆️

... and 429 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@benceruleanlu benceruleanlu self-assigned this Jul 3, 2026
@benceruleanlu
benceruleanlu marked this pull request as ready for review July 3, 2026 23:44
@benceruleanlu
benceruleanlu requested a review from a team July 3, 2026 23:44
@dosubot dosubot Bot added the size:L This PR changes 100-499 lines, ignoring generated files. label Jul 3, 2026

@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: 24f6f398e8

ℹ️ About Codex in GitHub

Your team has set up Codex to 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 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/platform/cloud/onboarding/composables/useDesktopLoginRedemption.ts Outdated
Comment thread src/platform/cloud/onboarding/composables/useDesktopLoginRedemption.ts Outdated
- redeemIfPresent never rejects; all six triggers fire-and-forget safely
- strip desktop_login_code from previousFullPath on the raw string so
  URLSearchParams re-encoding cannot alter other params under vue-router
- bound the auth-init wait (16s, matching router.ts) and stop blocking
  the other URL action loaders behind the approval dialog

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

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@src/platform/cloud/onboarding/composables/useDesktopLoginRedemption.ts`:
- Around line 59-62: The filtering in useDesktopLoginRedemption is only matching
the raw parameter text, so encoded variants of the desktop login code key can
survive the redirect. Update the logic around the params filter to decode just
the parameter name before comparing it against DESKTOP_LOGIN_CODE_KEY, while
still preserving the original value/encoding for unrelated parameters. Make sure
the check in useDesktopLoginRedemption catches both exact and encoded spellings
of the key before building kept.
- Around line 228-230: The visible-URL cleanup in useDesktopLoginRedemption’s
stripCodeFromUrl() still rebuilds the URL from route.query, which can re-encode
surviving params; update that helper to scrub the current URL using
stripDesktopLoginCodeFromPath(route.fullPath) instead, matching the same
raw-path preservation used for previousFullPath and keeping the code out of the
visible address bar without losing encoding fidelity.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 96b08f6a-edbc-4ea6-bae7-503c92a56ed8

📥 Commits

Reviewing files that changed from the base of the PR and between 24f6f39 and 4311c58.

📒 Files selected for processing (5)
  • src/composables/useUrlActionLoaders.test.ts
  • src/composables/useUrlActionLoaders.ts
  • src/platform/cloud/onboarding/composables/useDesktopLoginRedemption.test.ts
  • src/platform/cloud/onboarding/composables/useDesktopLoginRedemption.ts
  • src/platform/cloud/onboarding/composables/usePostAuthRedirect.ts

Comment thread src/platform/cloud/onboarding/composables/useDesktopLoginRedemption.ts Outdated
Comment thread src/platform/cloud/onboarding/composables/useDesktopLoginRedemption.ts Outdated
- Strip the code from previousFullPath at the auth guard so it never rides
  along on the login URL (the preserved-query stash captures it first)
- Match percent-encoded spellings of the query key when scrubbing paths
- Scrub the visible URL via the raw-path scrubber so surviving params keep
  their original encoding
- Tie redemption approval to the specific code so a new code always
  re-prompts
coderabbitai[bot]
coderabbitai Bot previously approved these changes Jul 6, 2026

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

Actionable comments posted: 3

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@src/platform/cloud/onboarding/desktopLoginRedemption.test.ts`:
- Around line 248-260: The desktopLoginRedemption test coverage is missing
regressions for identity changes while a redemption is still in flight. Add
tests around the existing setup/trigger flow to verify that after a transient
failure, switching users requires a fresh approval, and that seeding SECOND_CODE
while the first approval dialog is still pending does not allow the earlier
promise settlement to clear the newer code. Reuse the existing desktop login
redemption helpers and assertions in desktopLoginRedemption.test.ts so the new
cases exercise the same coalescing and stash behavior.

In `@src/platform/cloud/onboarding/desktopLoginRedemption.ts`:
- Around line 37-40: The approval state in desktopLoginRedemption should be tied
to the specific user being redeemed, not just the code, so update the
CodeRedemptionState and the redemption flow to verify the signed-in user
identity before reusing any approved code. In the main redemption path and the
dialog-confirmation logic, use currentUser as the user-specific guard, and
re-read currentUser immediately after the approval dialog returns before
consuming the token so an account switch cannot redeem with a stale user object.
Ensure the code path that handles retries and stashed codes only proceeds when
the approval still matches the same user.
- Around line 60-62: Make the redemption flow code-aware so one
desktop_login_code cannot clear or reuse another code’s state. Update the global
inFlight coalescing and the settle() cleanup in desktopLoginRedemption.ts so
they track the specific code value being processed, and only resolve/clear
matching preserved query state for that code. Also adjust the confirmation/fetch
paths that use inFlight and the stash/restore logic so a newer code is not
deleted by an older pending redemption.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: 212f25b6-e78f-4f09-a810-38ad0ed3d11e

📥 Commits

Reviewing files that changed from the base of the PR and between 53ee272 and 3127082.

📒 Files selected for processing (8)
  • src/locales/en/main.json
  • src/platform/cloud/onboarding/desktopLoginRedemption.test.ts
  • src/platform/cloud/onboarding/desktopLoginRedemption.ts
  • src/platform/navigation/preservedQueryManager.test.ts
  • src/platform/navigation/preservedQueryManager.ts
  • src/platform/navigation/preservedQueryTracker.test.ts
  • src/platform/navigation/preservedQueryTracker.ts
  • src/router.ts

Comment thread src/platform/cloud/onboarding/desktopLoginRedemption.test.ts
Comment thread src/platform/cloud/onboarding/desktopLoginRedemption.ts
Comment thread src/platform/cloud/onboarding/desktopLoginRedemption.ts Outdated
Base automatically changed from benceruleanlu/preserved-query-strip-on-capture to main July 7, 2026 08:24
pull Bot pushed a commit to Mu-L/ComfyUI_frontend that referenced this pull request Jul 7, 2026
…ker (Comfy-Org#13465)

## What

- `installPreservedQueryTracker` definitions accept an opt-in
`stripAfterCapture` flag: the marked keys are captured into the
sessionStorage stash and removed from the URL before the navigation
completes (single guard redirect at the decoded query-object level;
push/replace semantics are inherited from the original navigation, and
vue-router force-replaces the initial one).
- `preservedQueryManager` now captures the first non-empty string
element of repeated (array-valued) params instead of silently dropping
them.
- New real-router test suite for the tracker (createRouter +
createMemoryHistory, no router mocks), including a history-depth test
pinning the push/replace inheritance; manager tests extended for the
array/junk-value cases.

## Why

One-time secrets in query params (first consumer: desktop login codes,
GTM-93) must not linger in the visible URL, browser history,
`previousFullPath` redirects, or telemetry. Stripping after navigation —
what each loader does ad hoc today — leaves a window and forces
per-feature URL scrubbing; Comfy-Org#13418 originally needed a hand-rolled
encoding-aware string parser in three places. Stripping at capture time,
at the decoded query-object level, makes the stash the only carrier and
lets vue-router round-trip the surviving params' encoding itself.

Capability only — no existing namespace opts in; behavior is unchanged
for all current definitions. `stripAfterCapture`'s contract is
documented on the option: strip-marked keys must never be read from
`route.query` by later guards or views; the stash is the only
post-capture source.

## Landing order

Independent of everything else; Comfy-Org#13418 stacks on this branch.
# Conflicts:
#	src/platform/navigation/preservedQueryManager.test.ts
#	src/platform/navigation/preservedQueryTracker.test.ts
#	src/platform/navigation/preservedQueryTracker.ts
…h-aware

Approval is now recorded as the approving account's uid and re-verified
after the dialog resolves, so an account change mid-dialog or between a
transient failure and its retry can never redeem on a stale approval.
Settlement clears the preserved-query stash only when it still holds the
settling code, and the redemption runner drains the stash after each pass,
so a newer code stashed mid-flight survives and is processed immediately.

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

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
src/platform/cloud/onboarding/desktopLoginRedemption.ts (1)

149-159: 🔒 Security & Privacy | 🟠 Major | ⚡ Quick win

Re-check the active account after token retrieval.

Line 151 awaits approvedUser.getIdToken() after the uid check. If currentUser changes while that promise is pending, the subsequent POST can still redeem with the old user’s token. Re-read currentUser after token retrieval and before fetch.

Proposed fix
   try {
     idToken = await approvedUser.getIdToken()
   } catch {
     handleTransientFailure(code, state, 'could not get id token')
     return
   }
+
+  const tokenUser = useAuthStore().currentUser
+  if (!tokenUser || tokenUser.uid !== state.approvedUserUid) return
 
   let response: Response
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@src/platform/cloud/onboarding/desktopLoginRedemption.ts` around lines 149 -
159, The redeem flow in desktopLoginRedemption should re-check the active
account after approvedUser.getIdToken() resolves and before calling fetch,
because currentUser may have changed while the token request was pending. Update
the logic around approvedUser and the redemption request so it verifies the
current user still matches the original uid after token retrieval, and aborts
via handleTransientFailure if not.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Outside diff comments:
In `@src/platform/cloud/onboarding/desktopLoginRedemption.ts`:
- Around line 149-159: The redeem flow in desktopLoginRedemption should re-check
the active account after approvedUser.getIdToken() resolves and before calling
fetch, because currentUser may have changed while the token request was pending.
Update the logic around approvedUser and the redemption request so it verifies
the current user still matches the original uid after token retrieval, and
aborts via handleTransientFailure if not.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Pro Plus

Run ID: d19bdd88-bbc5-4443-871b-70e56324462c

📥 Commits

Reviewing files that changed from the base of the PR and between 3127082 and 72b22e8.

📒 Files selected for processing (2)
  • src/platform/cloud/onboarding/desktopLoginRedemption.test.ts
  • src/platform/cloud/onboarding/desktopLoginRedemption.ts

coderabbitai[bot]
coderabbitai Bot previously approved these changes Jul 7, 2026
…ter a 401

A trigger arriving while a drain is in progress (e.g. the auth watcher
firing while the approval dialog is open) was dropped, leaving a
mismatch-parked code stashed until an unrelated navigation; it now
replays as one more drain pass. A 401 retry also minted the same cached
id token; it now forces a refresh.
Comment thread src/platform/cloud/onboarding/desktopLoginRedemption.ts
AustinMroz
AustinMroz previously approved these changes Jul 10, 2026

@AustinMroz AustinMroz left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

This one was kinda rough to review, but I'm confident in the correctness of the code.

Comment thread src/platform/cloud/onboarding/desktopLoginRedemption.ts Outdated
Co-authored-by: AustinMroz <austin@comfy.org>
coderabbitai[bot]
coderabbitai Bot previously approved these changes Jul 10, 2026
@benceruleanlu
benceruleanlu enabled auto-merge July 10, 2026 01:59
@benceruleanlu
benceruleanlu added this pull request to the merge queue Jul 10, 2026
Merged via the queue into main with commit 3b2eb50 Jul 10, 2026
52 checks passed
@benceruleanlu
benceruleanlu deleted the benceruleanlu/gtm-93-desktop-login-completion branch July 10, 2026 02:28
@github-actions github-actions Bot locked and limited conversation to collaborators Jul 10, 2026
@benceruleanlu benceruleanlu added needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch cloud/1.47 Backport PRs for cloud 1.47 labels Jul 10, 2026
@comfy-pr-bot

Copy link
Copy Markdown
Member

@benceruleanlu Successfully backported to #13566

@github-actions github-actions Bot removed the needs-backport Fix/change that needs to be cherry-picked to the current feature freeze branch label Jul 10, 2026
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

cloud/1.47 Backport PRs for cloud 1.47 size:L This PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants