Skip to content

fix(plugin-view): depend ObjectView's non-grid fetch on the view's filter and sort, not the view object - #6582

Merged
os-support-ai merged 1 commit into
mainfrom
claude/issue-6460-objectview-fetch-deps
Aug 26, 2026
Merged

fix(plugin-view): depend ObjectView's non-grid fetch on the view's filter and sort, not the view object#6582
os-support-ai merged 1 commit into
mainfrom
claude/issue-6460-objectview-fetch-deps

Conversation

@os-support-ai

Copy link
Copy Markdown
Collaborator

Fixes#6460

All measurements below were taken on this branch's final commit, dbeb02d8b, whose tree is the merge base b1a732b22 plus this diff.

The defect, measured

ObjectView's non-grid fetch effect listed activeView — an element of the views prop array (viewsPropResolved?.find(...) || viewsPropResolved?.[0]) — among its dependencies. A host that builds that array inline produces a fresh element object on every one of its own renders, so the dependency changed identity every render and a new find() went out each time.

Measured on the merge base with packages/plugin-view/src/__tests__/ObjectView.viewIdentityDeps.test.tsx — instrumented adapter, one ObjectView, three parent re-renders after the first query settles, defaultViewType: 'calendar':

hostfind calls, beforeafter
views built inline (fresh array each render)41
views hoisted (stable array) — control11

The two runs differ only in whether the array literal is hoisted, which is what makes this a defect rather than a property of re-rendering.

On the card's "3 vs 1"

The card recorded 3-and-1 post-#6419 and the dispatch order asked for that to be re-measured rather than assumed. It is 4-and-1 here, and the difference is the harness, not the code. The card drove its parent from a 20 ms timer against a 30 ms schema read, so one of its three re-renders landed before#6419's gate opened and cost no query. This harness re-renders deterministically after the first query has settled, so all three land after the gate. The invariant underneath both readings is the same and is the thing worth stating: before the fix, each parent re-render costs exactly one extra find; after it, zero. A timing-dependent count is not a good pin, which is why the committed test does not use one.

Beyond the query count: ObjectView hands rows to the child view as data={data}, so each extra find() also re-delivered a fresh row array downstream. The first test asserts deliveries is length 1, so that half is pinned too.

⚠️ The card is wrong about which fields the effect reads — confirmed

The card body says the effect "only ever reads activeView?.filter and activeView?.type". Verified against main at b1a732b22: inside the effect body activeView is read at exactly two sites, and the second is sort, not type (type reaches the effect only via currentViewType, already its own dependency). Line numbers moved by one from the PM's dispatch-time reading — the reads are at :825 and :860 on the merge base, matching; after this diff they sit at :864 and :899.

A fix written from the card's sentence would have dropped the sort dependency, so a host changing only a view's sort would stop re-fetching — a worse defect than the churn, and one that passes any test authored from the card's own wording. re-fetches when only the view's SORT changes in the new test file is the pin that holds that shut.

The mechanism, and why it is faithful to values that do not stringify

The effect now depends on activeViewQueryInputs{ id, filter, sort } read off the active view and passed through useStableIdentity, a new internal helper (packages/plugin-view/src/stableIdentity.ts, not exported from the package index).

useStableIdentity returns the previous reference while the value is structurally unchanged. It compares structurally and never serializes, which matters because a view's filter and sort are author-supplied metadata this package does not get to constrain. A JSON.stringify key would be wrong in both directions:

  • Reports equal for values that differ → a missed re-fetch. The silent, dangerous direction. JSON.stringify drops keys whose value is undefined or a function and renders a Map/Set/class instance as {}, so { a: undefined }, { a: () => 1 }, {} and { a: new Map() } all serialize to the same four characters; NaN and Infinity both become null.
  • Reports different for values that are the same → the churn, back again. Key order is insertion order, not semantics: { a: 1, b: 2 } and { b: 2, a: 1 } are one filter and two strings.
  • Throws on a cyclic value, taking the render down.

Structural comparison avoids all three: key order cannot matter because nothing is serialized, a Date is compared by its instant, and anything the function does not model — functions, Map, Set, RegExp, class instances — falls back to Object.is, i.e. reference identity, which can never call two different values equal.

The safety invariant, which is what makes this safe to sit under a data dependency: every uncertainty resolves to "not equal". An unmodelled type, a differing key count, and a structure deeper than the depth bound all return false, which yields a new reference and therefore a re-fetch. This can only ever remove a redundant query; it can never withhold a needed one. packages/plugin-view/src/stableIdentity.test.ts asserts each stringify-collapse case as not equal, with the collapse asserted alongside it, so the tests state what they protect against rather than merely asserting a boolean.

Precedence is not flattened. Both reads still sit behind currentNamedViewConfig in the same || chains, unchanged; this decides only when the effect re-runs, never which source wins. A control test asserts a named listViews config's filter and sort still outrank the view's.

id is carried deliberately though the effect does not read it. It is a string, so it cannot churn, and pinning it keeps switching views observably re-fetching even between two views whose filter and sort happen to coincide — the acceptance control. Same ingredients as the display key this file already derives at what is now :1678: `${schema.objectName}-${activeNamedView || activeView?.id || 'default'}-${currentViewType}-${refreshKey}`, so this is convergence on in-file precedent.

"Ask hosts to pass a stable array" was rejected, per the ruling on the card: it is a contract change on every caller of a published component dressed as a bug fix, and it leaves the defect live for every host that does not comply.

Reverse verification

Direction predicted before running: restoring the pre-fix dependency array turns exactly the two churn-direction assertions red (expecting 1 find, observing 4) while every control stays green.

Observed, with the fix committed first so the restore had a real commit to return to — mutation confirmed on disk by counting both spellings and by blob hash, restore confirmed by the blob matching HEAD:packages/plugin-view/src/ObjectView.tsx and git diff HEAD being empty (the script carried a trap … EXIT INT TERM, absolute paths, and treated an empty hash as failure):

pre-mutation: fixed-spelling=1 prefix-spelling=0
post-mutation: fixed-spelling=0 prefix-spelling=1
HEAD blob: 9a27f5d17ffe079b09f2e6a13320d10456170867
mutated blob: 99e342e9e1f4f5cdbbd2f3ddebf443ac2ae99d6b
Tests 2 failed | 17 passed (19)
× issues ONE query across three parent re-renders with a FRESH `views` array
expected "vi.fn()" to be called 1 times, but got 4 times
× issues ONE query when the inline view carries a FILTER and a SORT rebuilt every render
expected "vi.fn()" to be called 1 times, but got 4 times
restored blob: 9a27f5d17ffe079b09f2e6a13320d10456170867
=== RESTORE CONFIRMED: blob matches HEAD, git diff HEAD empty ===

No rebuild step is involved on either leg: the test imports ../ObjectView from source, so the mutation reaches the run directly.

Exactly the predicted two, and both controls that separate "the churn is fixed" from "the effect stopped reacting" — filter change, sort change, active-view-id change, named-view precedence, and a filter Date moving to a different instant — stayed green.

Gates

Each verdict below is the gate's own reported line, with its exit code captured before any pipe.

gatecommandverdictexit
affected package testspnpm exec vitest run packages/plugin-view/Test Files 26 passed (26) / Tests 254 passed (254)0
type-checkpnpm --filter @object-ui/plugin-view run type-check (tsc --noEmit && tsc -p tsconfig.test.json)both passes clean, script name echoed0
lintpnpm exec eslint packages/plugin-view --no-inline-config✖ 290 problems (0 errors, 290 warnings)0
changesetnode scripts/check-changeset-presence.mjs✅ 1 source file(s) of 1 released package(s) changed, and this change declares 1 changeset(s)0
control bytesgrep -naP '[\x00-\x08\x0b\x0c\x0e-\x1f\x7f]' over all five touched filesno matches1 (none found)

Type-check needed pnpm --workspace-concurrency=2 --filter '@object-ui/plugin-view^...' build first: in a fresh worktree the unbuilt dependency closure makes tsc report TS2307: Cannot find module '@object-ui/components' and a cascade of TS7006 implicit-anys that vanish once the .d.ts files exist.

The lint run is a declared narrowing, and a measured one

Repo-wide pnpm lint is the CI job's own run. What is reported here is packages/plugin-view scoped, with the three pieces of evidence that make the narrowing a measurement rather than a skip:

  1. The population comes from eslint's own flat-config resolution, not from a guess about which files count — the command names a directory and eslint decides.
  2. --format json reports 42 files linted, 0 errors, 290 warnings.
  3. The repo config enables no type-aware linting (no parserOptions.project, no projectService anywhere in eslint.config.js), so a file's verdict depends only on its own contents plus the shared config. This diff touches five files, all inside packages/plugin-view, so it cannot move the verdict of any file outside the scoped run.

Warning accounting, since this PR adds four.eslint.config.js deliberately sets react-hooks/refs to warn ("codebase predates these rules") and .github/workflows/lint.yml deliberately sets no --max-warnings, so errors are the gate. The four new warnings are all in stableIdentity.ts, on the ref read/write in useStableIdentity — the standard identity-preserving memo pattern. The access is derived purely from (previous, value), so it is idempotent and safe under StrictMode's double invocation; an inline eslint-disable would be inert anyway, because pnpm lint runs with --no-inline-config.

ObjectView.tsx itself adds zero warnings. Verified by linting the merge-base copy of the file against the same config:

BASELINE ObjectView.tsx: errors 0 warnings 59 exhaustive-deps 3
PATCHED ObjectView.tsx: errors 0 warnings 59 exhaustive-deps 3

Scope

This one effect. activeView also appears in the dependency arrays at :727, :1108, :1380 and :1474 on the merge base; they are untouched, and nothing here was swept in as a rider. No finding is filed against them — assessing whether they share this defect needs its own measurement, which this card's scope does not fund.

One observation worth recording without acting on it: currentNamedViewConfig is also in this effect's dependency array and is a useMemo over schema.listViews, so a host that inlines its schema object can churn this effect through that door instead. That is out of this card's stated scope (the ruling is about activeView) and is unmeasured here, so it is noted rather than filed or fixed.

No docs change: useStableIdentity is internal and not exported from the package index, and the fix changes no authorable surface — the changeset is this PR's release-notes input.

Generated by Claude Code


Generated by Claude Code

…sort, not the view object
`ObjectView`'s non-grid fetch effect listed `activeView` — an element of the
`views` prop array — among its dependencies. A host that builds that array
inline hands over a fresh element object on every one of its own renders, so
the dependency changed identity every render and a new `find()` went out each
time. Measured with an instrumented adapter and three parent re-renders: 4
queries where a hoisted array gives 1. Each extra query also re-delivered a
fresh row array to the child view, since rows go down as `data={data}`.
The effect now depends on a reference that changes only when the values it
reads change — the active view's `filter` and `sort`, plus its `id`. The card
that reported this said the effect reads `filter` and `type`; measured, the
second read is `sort`, so a fix written from that sentence would have dropped
the sort dependency.
`useStableIdentity` compares structurally and never serializes, so it stays
correct for values with no faithful stringification (a `Date`, a function, a
`Map`, `NaN`, key-order instability), and every case it cannot model resolves
to "changed" — a redundant query, never a withheld one.
Precedence is untouched: a named `listViews` config still outranks the view's
filter and sort, which still outrank `table.*` and its deprecated aliases.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_011SfZeFWrhGLHmfq61xbz4q
@github-actions

Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

MetricValueBudget
Eager closure (gzip, 52 chunks)3235.4 KB3266.6 KB
Main entry chunk (gzip)157.0 KB350 KB
Entry fileindex-DT8EIV67.js
StatusPASS

The eager closure is every chunk the entry reaches through static imports — what the browser fetches and parses before the app renders. The entry chunk on its own is a small fraction of it.


📦 Bundle Size Report

PackageSizeGzipped
app-shell (consoleActionDispatch.js)0.20KB0.19KB
app-shell (index.js)11.71KB4.46KB
app-shell (runtime-config.js)18.10KB6.51KB
app-shell (types.js)0.01KB0.04KB
app-shell (urlParams.js)10.06KB3.86KB
auth (ActiveOrganizationStorage.js)25.05KB9.16KB
auth (AuthContext.js)0.31KB0.24KB
auth (AuthGuard.js)2.07KB1.00KB
auth (AuthProvider.js)40.18KB10.59KB
auth (AuthShell.js)3.49KB1.40KB
auth (ForgotPasswordForm.js)12.21KB3.45KB
auth (LoginForm.js)18.15KB5.39KB
auth (PreviewBanner.js)0.90KB0.50KB
auth (RegisterForm.js)6.65KB2.22KB
auth (SocialSignInButtons.js)9.61KB3.89KB
auth (UserMenu.js)3.41KB1.23KB
auth (auth-gate-events.js)1.29KB0.66KB
auth (authStyles.js)5.04KB1.72KB
auth (createAuthClient.js)40.21KB10.80KB
auth (createAuthenticatedFetch.js)8.46KB3.43KB
auth (index.js)3.19KB1.44KB
auth (invitation-status.js)1.22KB0.70KB
auth (org-roles.js)6.66KB2.78KB
auth (phone-identifier.js)1.11KB0.66KB
auth (types.js)0.59KB0.35KB
auth (useAuth.js)5.30KB1.02KB
auth (useWorkspaceAdminStatus.js)5.13KB2.35KB
collaboration (CommentThread.js)26.08KB7.56KB
collaboration (LiveCursors.js)3.17KB1.27KB
collaboration (PresenceAvatars.js)6.49KB2.64KB
collaboration (PresenceProvider.js)2.79KB1.13KB
collaboration (index.js)1.68KB0.73KB
collaboration (useCollaborationTranslation.js)6.05KB2.52KB
collaboration (useCommentSearch.js)1.98KB0.88KB
collaboration (useConflictResolution.js)7.75KB1.86KB
collaboration (useMentionNotifications.js)1.81KB0.68KB
collaboration (usePresence.js)6.33KB1.84KB
collaboration (useRealtimeSubscription.js)7.91KB2.01KB
components (index.js)506.01KB114.64KB
core (index.js)5.30KB2.13KB
create-plugin (index.js)10.08KB3.26KB
data-objectstack (index.js)173.10KB47.96KB
fields (index.js)238.89KB60.02KB
i18n (LocalizationContext.js)1.76KB0.96KB
i18n (currency.js)1.22KB0.64KB
i18n (fallbackInterpolation.js)6.25KB2.77KB
i18n (i18n.js)4.28KB1.75KB
i18n (index.js)3.44KB1.39KB
i18n (pickLocalized.js)7.62KB3.26KB
i18n (provider.js)26.89KB9.04KB
i18n (useDisplayLocale.js)2.85KB1.45KB
i18n (useObjectLabel.js)33.40KB8.71KB
i18n (useSafeTranslation.js)5.60KB2.33KB
layout (index.js)38.95KB10.97KB
mobile (MobileProvider.js)0.92KB0.49KB
mobile (ResponsiveContainer.js)0.94KB0.38KB
mobile (breakpoints.js)1.51KB0.70KB
mobile (createOfflineDataSource.js)5.61KB1.75KB
mobile (index.js)1.55KB0.62KB
mobile (offlineQueue.js)3.91KB1.35KB
mobile (pwa.js)0.97KB0.49KB
mobile (serviceWorker.js)1.48KB0.62KB
mobile (serviceWorkerSource.js)3.41KB1.48KB
mobile (useBreakpoint.js)1.54KB0.65KB
mobile (useGesture.js)6.96KB1.98KB
mobile (useOfflineSync.js)1.99KB0.72KB
mobile (usePullToRefresh.js)2.53KB0.85KB
mobile (useResponsive.js)0.72KB0.42KB
mobile (useResponsiveConfig.js)1.37KB0.63KB
mobile (useSpecGesture.js)4.32KB1.64KB
mobile (useTouchTarget.js)1.01KB0.54KB
permissions (MePermissionsProvider.js)9.53KB3.38KB
permissions (PermissionContext.js)0.31KB0.25KB
permissions (PermissionGuard.js)0.89KB0.45KB
permissions (PermissionProvider.js)4.64KB1.50KB
permissions (evaluator.js)5.12KB1.74KB
permissions (index.js)0.93KB0.41KB
permissions (store.js)0.91KB0.42KB
permissions (useFieldPermissions.js)1.28KB0.53KB
permissions (usePermissions.js)1.93KB0.88KB
plugin-ai (index.js)15.75KB3.80KB
plugin-calendar (index.js)46.91KB12.92KB
plugin-charts (index.js)64.66KB18.32KB
plugin-chatbot (index.js)188.60KB44.82KB
plugin-dashboard (index.js)133.48KB34.49KB
plugin-designer (index.js)212.80KB43.15KB
plugin-detail (index.js)245.29KB62.39KB
plugin-editor (index.js)2.46KB1.10KB
plugin-form (index.js)131.78KB32.19KB
plugin-gantt (index.js)165.16KB40.33KB
plugin-grid (index.js)201.66KB54.58KB
plugin-kanban (index.js)53.16KB14.65KB
plugin-list (index.js)112.74KB27.50KB
plugin-map (index.js)20.09KB6.62KB
plugin-markdown (index.js)13.72KB4.69KB
plugin-report (index.js)43.51KB11.94KB
plugin-timeline (index.js)26.72KB7.71KB
plugin-tree (index.js)9.26KB3.13KB
plugin-view (index.js)85.87KB21.12KB
providers (DataSourceProvider.js)0.75KB0.39KB
providers (MetadataProvider.js)1.37KB0.59KB
providers (ThemeProvider.js)1.90KB0.85KB
providers (UploadProvider.js)11.66KB3.50KB
providers (index.js)0.45KB0.23KB
providers (types.js)0.01KB0.04KB
react-runtime (index.js)5.62KB2.34KB
react (LazyPluginLoader.js)4.47KB1.63KB
react (SchemaRenderer.js)63.21KB21.05KB
react (data-invalidation.js)5.05KB2.08KB
react (index.js)2.44KB1.21KB
react (schema-input.js)2.32KB1.24KB
react (spec-input.js)0.20KB0.18KB
sdui-parser (codegen.js)5.41KB2.34KB
sdui-parser (dashboard-widget-options.js)3.08KB1.30KB
sdui-parser (index.js)4.93KB2.24KB
sdui-parser (input-type.js)2.84KB1.40KB
sdui-parser (parse.js)12.13KB3.65KB
sdui-parser (provenance.js)3.66KB1.82KB
sdui-parser (types.js)0.28KB0.23KB
sdui-parser (validate.js)7.54KB2.63KB
types (ai.js)0.20KB0.17KB
types (api-types.js)0.20KB0.18KB
types (app.js)2.87KB0.99KB
types (base.js)0.20KB0.18KB
types (blocks.js)0.20KB0.18KB
types (complex.js)2.74KB1.41KB
types (crud.js)0.20KB0.18KB
types (dashboard-filter-alias.js)6.23KB2.74KB
types (data-display.js)3.75KB1.85KB
types (data-protocol.js)0.20KB0.19KB
types (data.js)0.20KB0.18KB
types (designer.js)1.85KB0.85KB
types (disclosure.js)0.20KB0.18KB
types (error-code.js)1.54KB0.88KB
types (feedback.js)0.20KB0.18KB
types (field-types.js)0.20KB0.18KB
types (form.js)0.20KB0.18KB
types (http-inflight.js)8.87KB3.73KB
types (http-retry.js)4.32KB2.02KB
types (icon-key-migration.js)4.26KB1.63KB
types (index.js)4.72KB2.24KB
types (layout.js)0.20KB0.18KB
types (managed-by.js)0.19KB0.18KB
types (mobile.js)2.59KB1.31KB
types (navigation.js)0.20KB0.18KB
types (objectql.js)0.20KB0.18KB
types (overlay.js)0.20KB0.18KB
types (permissions.js)0.20KB0.18KB
types (plugin-scope.js)0.20KB0.18KB
types (record-components.js)0.20KB0.19KB
types (record-semantics.js)1.28KB0.67KB
types (registry.js)0.20KB0.18KB
types (reports.js)0.20KB0.18KB
types (spec-report.js)5.05KB1.93KB
types (spec-ui-namespace.js)0.20KB0.19KB
types (system-fields.js)3.33KB1.54KB
types (theme.js)6.28KB2.87KB
types (ui-action.js)3.40KB1.71KB
types (views.js)0.20KB0.18KB
types (widget.js)0.20KB0.18KB

Size Limits

  • ✅ Core packages should be < 50KB gzipped
  • ✅ Component packages should be < 100KB gzipped
  • ⚠️ Plugin packages should be < 150KB gzipped

@os-support-aiClaude

Copy link
Copy Markdown
CollaboratorAuthor

ACCEPT on the diff. ⏸ Landing held until every check is green — 18 success / 3 skipped / 8 still running, zero failures at dbeb02d8b935. Enqueue qualification is every check green on the reviewed head, not the required subset.

The two constraints from the dispatch, verified against the branch rather than the report

Precedence unflattened. Both reads still sit behind currentNamedViewConfig in the same || chains — only the second operand's source changed:

:864 currentNamedViewConfig?.filter || activeViewQueryInputs?.filter
:899 currentNamedViewConfig?.sort || activeViewQueryInputs?.sort
:955 }, [ … currentNamedViewConfig, activeViewQueryInputs, renderListView, … ]

The other four dependency arrays untouched.:766, :1147, :1419 and :1513 all still carry a bare activeView, and the separate memo at :1475-1476 still reads activeView?.filter / activeView?.sort directly. Nothing was swept in.

The card's factual error is confirmed corrected. The card said the effect reads filter and type; the implementation reads filter and sort, verified independently by the agent rather than taken from the dispatch. A fix built on the card's sentence would have dropped the sort dependency, and every test written from that same sentence would still have passed.

Public-surface check — and a correction to how this seat first ran it

useStableIdentity lives in a new 142-line internal module, so whether it becomes published surface matters for both the review posture and the changeset bump. It does not: the package entry is packages/plugin-view/src/index.tsx (219 lines, 14 export lines), and stableIdentity / StableIdentity appear in it 0 times.

⚠️ This seat's first attempt at that check read packages/plugin-view/src/index.ts — a path that does not exist. The contents API returned a 404 body, and grepping it for export naturally gave 0, which would have read as "not exported" for entirely the wrong reason. What caught it was the positive control failing to fire: an entry file with zero export lines is not a plausible entry file. The rule earns its keep again — a zero is not a finding until a control proves the instrument reached the target. Re-run against the real entry, resolved from package.json's exports field, the answer is the same but now it is measured.

Why the mechanism is right, not just adequate

The dispatch's one hard constraint was that the identity must stay correct for values that do not round-trip through naive stringification. The chosen comparison never serializes, so a Date, a function, a Map, NaN or key-order instability are all handled — and the failure direction is the safe one: every case it cannot model resolves to "not equal", a redundant query, never a withheld one. Over-fetching is a performance regression; under-fetching is a correctness bug. Choosing which way to fail, and saying so, is the part that matters.

Carrying id in the identity though the effect never reads it is a good call the dispatch did not ask for: it is a string so it cannot churn, and without it two views whose filter and sort coincide would stop re-fetching when the user switched between them — a defect the narrow reading of "depend on what the effect reads" would have introduced.

The strongest thing in the report

The card's own harness turned out to be vacuous in the agent's hands:

I also tried to re-run the card's own timer harness verbatim as a scratch file (deleted, not committed) and could not get its parent to re-render three times inside one act() window — it reached 2 renders and 1 find in BOTH regimes, so it measured nothing.

It then said so, did not chase it, and built a deterministic pin instead. The new harness reads 4-vs-1 before the fix and 1-and-1 after, where the card recorded 3-and-1 — and it explains the difference (the card's 20 ms-timer parent landed one re-render before #6419's schema gate opened) rather than quietly adopting the new number. The invariant survives both readings: before the fix each parent re-render costs exactly one extra find; after it, zero.

Reverse verification predicted the direction first and observed exactly it — restoring the pre-fix dependency array reds the two churn-direction assertions (expected 1, got 4) with all 17 controls green. Mutation and restoration were both confirmed on disk by spelling counts and blob hash (9a27f5d199e342e9 → back to 9a27f5d1, git diff HEAD empty), under a trap on EXIT INT TERM with absolute paths, treating an empty hash as failure.

Disclosures checked and accepted

The +4 new lint warnings are all react-hooks/refs in the new module on the identity-preserving memo pattern; ObjectView.tsx adds zero, proven by linting the merge-base copy of that file against the same config for an identical 0 errors / 59 warnings / 3 exhaustive-deps. The scoped lint run is declared as a measurement rather than a skip, on the grounds that the repo config enables no type-aware linting, so this diff cannot move any file outside the scope. mergeable_state: behind is not a call to action and no rebase or force-push was attempted — correct.


Generated by Claude Code

@os-support-ai
os-support-ai marked this pull request as ready for review August 26, 2026 14:48
@os-support-ai
os-support-ai added this pull request to the merge queueAug 26, 2026
Merged via the queue into main with commit 6a7893dAug 26, 2026
30 checks passed
@os-support-ai
os-support-ai deleted the claude/issue-6460-objectview-fetch-deps branch August 26, 2026 15:01
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

2 participants

@os-support-ai@claude