fix(oracle-l8-r2): scrub raw endpoint from Inspector action toast
build-and-publish / test (push) Has been cancelled
build-and-publish / image (push) Has been cancelled

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.
This commit is contained in:
2026-06-14 19:24:48 +04:00
parent a02cc70e68
commit c3515707ab
+1 -1
View File
@@ -88,7 +88,7 @@ function ActionButton({ kind, label, actionId }: { kind: "complete" | "approve"
const onClick = async () => { const onClick = async () => {
if (!isLive) { 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; return;
} }
setRunning(true); setRunning(true);