chore: remove some temporarily unused code.

This commit is contained in:
woo0ood 2025-01-24 23:31:52 +00:00 committed by Wood
parent 825602938d
commit f6aa1f0d65
2 changed files with 2 additions and 18 deletions

View File

@ -71,7 +71,7 @@ const ConditionValue = ({
: ''
}
return ''
}, [])
}, [t])
return (
<div className='rounded-md bg-workflow-block-parma-bg'>

View File

@ -7,13 +7,12 @@ import ResultPanel from '../../run/result-panel'
import InputNumberWithSlider from '../_base/components/input-number-with-slider'
import type { LoopNodeType } from './types'
import useConfig from './use-config'
import { ErrorHandleMode, type NodePanelProps } from '@/app/components/workflow/types'
import type { NodePanelProps } from '@/app/components/workflow/types'
import ConditionWrap from './components/condition-wrap'
import type { NodePanelProps } from '@/app/components/workflow/types'
import BeforeRunForm from '@/app/components/workflow/nodes/_base/components/before-run-form'
import Field from '@/app/components/workflow/nodes/_base/components/field'
import BeforeRunForm from '@/app/components/workflow/nodes/_base/components/before-run-form'
import Select from '@/app/components/base/select'
import formatTracing from '@/app/components/workflow/run/utils/format-log'
import { useLogs } from '@/app/components/workflow/run/hooks'
@ -25,20 +24,6 @@ const Panel: FC<NodePanelProps<LoopNodeType>> = ({
data,
}) => {
const { t } = useTranslation()
const responseMethod = [
{
value: ErrorHandleMode.Terminated,
name: t(`${i18nPrefix}.ErrorMethod.operationTerminated`),
},
{
value: ErrorHandleMode.ContinueOnError,
name: t(`${i18nPrefix}.ErrorMethod.continueOnError`),
},
{
value: ErrorHandleMode.RemoveAbnormalOutput,
name: t(`${i18nPrefix}.ErrorMethod.removeAbnormalOutput`),
},
]
const {
readOnly,
@ -64,7 +49,6 @@ const Panel: FC<NodePanelProps<LoopNodeType>> = ({
handleUpdateSubVariableCondition,
handleToggleSubVariableConditionLogicalOperator,
handleUpdateLoopCount,
changeErrorResponseMode,
} = useConfig(id, data)
const nodeInfo = formatTracing(loopRunResult, t)[0]