From c3515707ab1627dc995238145fd13ea6b2208a6d Mon Sep 17 00:00:00 2001 From: shad Date: Sun, 14 Jun 2026 19:24:48 +0400 Subject: [PATCH] fix(oracle-l8-r2): scrub raw endpoint from Inspector action toast Oracle narrow FAIL on sha-a02cc70e: Inspector.tsx:91 still emitted 'Switch to LIVE mode + sign in to execute "..." against /api/runtime/transactions/{id}/actions/{actionId}.' Rewritten as 'Switch to live mode and sign in to run "..." on this case.' Matches the LeftRail and Approvals toast voice. Source grep for user-visible /api/ in pushToast/title/JSX text returns zero matches. --- src/components/Inspector.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Inspector.tsx b/src/components/Inspector.tsx index f3640e4..cd81dc8 100644 --- a/src/components/Inspector.tsx +++ b/src/components/Inspector.tsx @@ -88,7 +88,7 @@ function ActionButton({ kind, label, actionId }: { kind: "complete" | "approve" const onClick = async () => { if (!isLive) { - pushToast("info", `Switch to LIVE mode + sign in to execute "${label}" against /api/runtime/transactions/{id}/actions/{actionId}.`); + pushToast("info", `Switch to live mode and sign in to run "${label}" on this case.`); return; } setRunning(true);