chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-22 11:07:04 +00:00
committed by Aiden Cline
parent 6196b81e0a
commit fa8b7bc4d2

View File

@@ -26,12 +26,7 @@ export function errorMessage(error: unknown): string {
return error.message
}
if (
isRecord(error) &&
isRecord(error.data) &&
typeof error.data.message === "string" &&
error.data.message
) {
if (isRecord(error) && isRecord(error.data) && typeof error.data.message === "string" && error.data.message) {
return error.data.message
}