fix(web): type resume conflict detection

This commit is contained in:
Cursor Agent
2026-05-26 23:10:48 +00:00
parent 004ac15cb3
commit 700b13478d
@@ -93,7 +93,7 @@ function isAbortError(error: unknown): error is DOMException {
return error instanceof DOMException && error.name === "AbortError";
}
function isResumeVersionConflict(error: unknown): error is ORPCError {
function isResumeVersionConflict(error: unknown): boolean {
return error instanceof ORPCError && error.code === "RESUME_VERSION_CONFLICT";
}