chore: generate

This commit is contained in:
opencode-agent[bot]
2026-04-23 00:25:38 -04:00
committed by Aiden Cline
parent 6196b81e0a
commit fa8b7bc4d2
+1 -6
View File
@@ -26,12 +26,7 @@ export function errorMessage(error: unknown): string {
return error.message return error.message
} }
if ( if (isRecord(error) && isRecord(error.data) && typeof error.data.message === "string" && error.data.message) {
isRecord(error) &&
isRecord(error.data) &&
typeof error.data.message === "string" &&
error.data.message
) {
return error.data.message return error.data.message
} }