diff --git a/web/app/components/workflow/constants.ts b/web/app/components/workflow/constants.ts index 46d12764f1..a77e092963 100644 --- a/web/app/components/workflow/constants.ts +++ b/web/app/components/workflow/constants.ts @@ -280,7 +280,7 @@ export const NODE_WIDTH = 240 export const X_OFFSET = 60 export const NODE_WIDTH_X_OFFSET = NODE_WIDTH + X_OFFSET export const Y_OFFSET = 39 -export const MAX_TREE_DEEPTH = 50 +export const MAX_TREE_DEPTH = 50 export const START_INITIAL_POSITION = { x: 80, y: 282 } export const AUTO_LAYOUT_OFFSET = { x: -42, diff --git a/web/app/components/workflow/hooks/use-checklist.ts b/web/app/components/workflow/hooks/use-checklist.ts index 142f96ed2a..7f45769acd 100644 --- a/web/app/components/workflow/hooks/use-checklist.ts +++ b/web/app/components/workflow/hooks/use-checklist.ts @@ -16,7 +16,7 @@ import { } from '../utils' import { CUSTOM_NODE, - MAX_TREE_DEEPTH, + MAX_TREE_DEPTH, } from '../constants' import type { ToolNodeType } from '../nodes/tool/types' import { useIsChatMode } from './use-workflow' @@ -119,8 +119,8 @@ export const useChecklistBeforePublish = () => { maxDepth, } = getValidTreeNodes(nodes.filter(node => node.type === CUSTOM_NODE), edges) - if (maxDepth > MAX_TREE_DEEPTH) { - notify({ type: 'error', message: t('workflow.common.maxTreeDepth', { depth: MAX_TREE_DEEPTH }) }) + if (maxDepth > MAX_TREE_DEPTH) { + notify({ type: 'error', message: t('workflow.common.maxTreeDepth', { depth: MAX_TREE_DEPTH }) }) return false }