Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion webapp/packages/core-blocks/src/useErrorDetails.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export function useErrorDetails(error: IErrorDetailsHook['error']): HookType {
};
const name = typeof error === 'string' ? translate('core_blocks_exception_message_error_message') : error?.name;
let message = (typeof error === 'string' ? error : error?.message) ?? undefined;
const executionFailedMessage = (error as any)?.execution_failed_message as string;
const executionFailedMessage = (error as any)?.executionFailedMessage as string;
const errorCode = (error as any)?.errorCode as string;
let workflowId: string | undefined;

Expand Down
Loading