From fa5b1bef1294ec57aa1003bd9c24a58f418869e0 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 5 Aug 2026 18:22:59 +0000 Subject: [PATCH 1/2] fix(mockups): derive soft-mark caution copy from shared UNGROUNDED MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Follow-up for Devin on #1605 — soft-mark was hand-typing the approved warning in two spans; lead/tail now come from the same constants every other sample uses. --- .../verification-notice-subtle-mockups.tsx | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/src/components/verification-notice-subtle-mockups.tsx b/src/components/verification-notice-subtle-mockups.tsx index 402452cf1f..a482bb7c73 100644 --- a/src/components/verification-notice-subtle-mockups.tsx +++ b/src/components/verification-notice-subtle-mockups.tsx @@ -13,8 +13,10 @@ import { CircleAlert, Info, TriangleAlert } from "lucide-react"; * owner review and are not proposed here. */ -const UNGROUNDED = - "AI-generated, and the cited sources could not be shown to support every claim in it. Read the cited passages and confirm each clinical number, dose, timing and threshold there before acting on it."; +const UNGROUNDED_LEAD = "AI-generated, and the cited sources could not be shown to support every claim in it."; +const UNGROUNDED_TAIL = + "Read the cited passages and confirm each clinical number, dose, timing and threshold there before acting on it."; +const UNGROUNDED = `${UNGROUNDED_LEAD} ${UNGROUNDED_TAIL}`; const READY = "AI-generated from the cited sources. Verify every clinical claim against the linked source before acting on it."; @@ -175,13 +177,8 @@ function Lockup({ concept }: { concept: ConceptId }) { className="mt-0.5 size-icon-sm shrink-0 text-[color:var(--warning)] opacity-55" />

- - AI-generated, and the cited sources could not be shown to support every claim in it. - {" "} - - Read the cited passages and confirm each clinical number, dose, timing and threshold there before acting on - it. - + {UNGROUNDED_LEAD}{" "} + {UNGROUNDED_TAIL}

); From cf35916f03e11b98564ac3d9ecd58269a9b1b00c Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Wed, 5 Aug 2026 18:22:59 +0000 Subject: [PATCH 2/2] chore(ledger): record soft-mark UNGROUNDED follow-up --- docs/branch-review-ledger.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/branch-review-ledger.md b/docs/branch-review-ledger.md index c3eff3d868..9c87e94c5c 100644 --- a/docs/branch-review-ledger.md +++ b/docs/branch-review-ledger.md @@ -641,3 +641,4 @@ Records before 2026-07-28 were written by hand and had drifted: 146 lines carrie | 2026-08-05 | codex/v2-design-system-completion | 8863cea53bf4df59e8795dcaab1fa420b5109516 | PR #1616 v2 design system CI+reviews | fixed typecheck + review defects; baselines remain not-committed by design | tsc; vitest ui-v2/accessible-table/ui-primitives/design-system-adoption | | 2026-08-05 | codex/v2-design-system-completion | 8b49bfa2b66ed78577b08e1a50414db55898f2df | PR #1616 v2 design system CI+reviews | fixed typecheck + review defects; baselines remain not-committed by design | tsc; vitest ui-v2/accessible-table/ui-primitives/design-system-adoption | | 2026-08-05 | codex/v2-design-system-completion | 1ea30c19c48b3791519659abf85b20c9e8c7faab | PR #1616 review feedback disposition | COMPLETED: fixed mode-home empty composer reserve + chip category v2 tokens; dispositioned remaining Devin analysis findings to outstanding-issues; unresolved threads 0 | vitest search-route-ownership 12/12; ckb-v2-token-contract+related green; CI in progress on tip | +| 2026-08-05 | cursor/soft-mark-ungrounded-copy-ec26 | fa5b1bef1294ec57aa1003bd9c24a58f418869e0 | Run PR sweep | follow-up for Devin soft-mark copy drift left out of #1605 squash | local: prettier |