diff --git a/web/app/components/workflow/nodes/llm/components/tools/max-iterations.tsx b/web/app/components/workflow/nodes/llm/components/tools/max-iterations.tsx index d9de3623e3..f789b280ec 100644 --- a/web/app/components/workflow/nodes/llm/components/tools/max-iterations.tsx +++ b/web/app/components/workflow/nodes/llm/components/tools/max-iterations.tsx @@ -1,6 +1,5 @@ import { memo } from 'react' import { InputNumber } from '@/app/components/base/input-number' -import Slider from '@/app/components/base/slider' import Tooltip from '@/app/components/base/tooltip' import { cn } from '@/utils/classnames' @@ -12,28 +11,19 @@ type MaxIterationsProps = { } const MaxIterations = ({ value = 10, onChange, className }: MaxIterationsProps) => { return ( -