forked from farhoodlabs/paperclip
fix(ui): surface skipped wakeup messages in agent detail
Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
@@ -2937,7 +2937,7 @@ function RunDetail({ run: initialRun, agentRouteId, adapterType }: { run: Heartb
|
|||||||
payload: resumePayload,
|
payload: resumePayload,
|
||||||
}, run.companyId);
|
}, run.companyId);
|
||||||
if (!("id" in result)) {
|
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;
|
return result;
|
||||||
},
|
},
|
||||||
@@ -2969,7 +2969,7 @@ function RunDetail({ run: initialRun, agentRouteId, adapterType }: { run: Heartb
|
|||||||
payload: retryPayload,
|
payload: retryPayload,
|
||||||
}, run.companyId);
|
}, run.companyId);
|
||||||
if (!("id" in result)) {
|
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;
|
return result;
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user