diff --git a/apps/sim/tools/error-extractors.ts b/apps/sim/tools/error-extractors.ts index 1bae33b442..1f3b7e779c 100644 --- a/apps/sim/tools/error-extractors.ts +++ b/apps/sim/tools/error-extractors.ts @@ -74,6 +74,10 @@ const ERROR_EXTRACTORS: ErrorExtractorConfig[] = [ if (errorInfo?.data?.message) { return errorInfo.data.message } + // Internal proxy route error field fallback + if (typeof errorInfo?.data?.error === 'string') { + return errorInfo.data.error + } return undefined }, },