fix(ui): surface skipped wakeup messages in agent detail

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
dotta 2026-04-02 11:52:43 -05:00
parent 3ab7d52f00
commit 50e9f69010

View file

@ -2937,7 +2937,7 @@ function RunDetail({ run: initialRun, agentRouteId, adapterType }: { run: Heartb
payload: resumePayload,
}, run.companyId);
if (!("id" in result)) {
throw new Error("Resume request was skipped because the agent is not currently invokable.");
throw new Error(result.message ?? "Resume request was skipped.");
}
return result;
},
@ -2969,7 +2969,7 @@ function RunDetail({ run: initialRun, agentRouteId, adapterType }: { run: Heartb
payload: retryPayload,
}, run.companyId);
if (!("id" in result)) {
throw new Error("Retry was skipped because the agent is not currently invokable.");
throw new Error(result.message ?? "Retry was skipped.");
}
return result;
},