We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 744fc3a + 88d6027 commit c37c2e9Copy full SHA for c37c2e9
1 file changed
webapp/packages/core-blocks/src/useErrorDetails.ts
@@ -56,7 +56,7 @@ export function useErrorDetails(error: IErrorDetailsHook['error']): HookType {
56
};
57
const name = typeof error === 'string' ? translate('core_blocks_exception_message_error_message') : error?.name;
58
let message = (typeof error === 'string' ? error : error?.message) ?? undefined;
59
- const executionFailedMessage = (error as any)?.execution_failed_message as string;
+ const executionFailedMessage = (error as any)?.executionFailedMessage as string;
60
const errorCode = (error as any)?.errorCode as string;
61
let workflowId: string | undefined;
62
0 commit comments