From f0c4b28c6bd63170eaaa6fe4a1724310e20594eb Mon Sep 17 00:00:00 2001 From: so95 Date: Thu, 20 Mar 2025 14:23:15 +0700 Subject: [PATCH] Fix: type import (#6328) ### What problem does this PR solve? fixed type import . ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- web/src/pages/flow/form/invoke-form/dynamic-variables.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/src/pages/flow/form/invoke-form/dynamic-variables.tsx b/web/src/pages/flow/form/invoke-form/dynamic-variables.tsx index 3538b8b72..9571c66c2 100644 --- a/web/src/pages/flow/form/invoke-form/dynamic-variables.tsx +++ b/web/src/pages/flow/form/invoke-form/dynamic-variables.tsx @@ -1,12 +1,12 @@ import { EditableCell, EditableRow } from '@/components/editable-cell'; import { useTranslate } from '@/hooks/common-hooks'; +import { RAGFlowNodeType } from '@/interfaces/database/flow'; import { DeleteOutlined } from '@ant-design/icons'; import { Button, Collapse, Flex, Input, Select, Table, TableProps } from 'antd'; import { trim } from 'lodash'; import { useBuildComponentIdSelectOptions } from '../../hooks/use-get-begin-query'; -import { IInvokeVariable, RAGFlowNodeType } from '../../interface'; +import { IInvokeVariable } from '../../interface'; import { useHandleOperateParameters } from './hooks'; - import styles from './index.less'; interface IProps {