mirror of
http://112.124.100.131/huang.ze/ebiz-dify-ai.git
synced 2025-12-10 03:16:51 +08:00
chore: lint code to remove unused imports and variables (#7033)
This commit is contained in:
@@ -21,7 +21,6 @@ type ResultPanelProps = {
|
||||
}
|
||||
|
||||
const ResultPanel: FC<ResultPanelProps> = ({
|
||||
status,
|
||||
elapsed_time,
|
||||
total_tokens,
|
||||
error,
|
||||
|
||||
@@ -49,8 +49,6 @@ const BlockInput: FC<IBlockInputProps> = ({
|
||||
setCurrentValue(value)
|
||||
}, [value])
|
||||
|
||||
const isContentChanged = value !== currentValue
|
||||
|
||||
const contentEditableRef = useRef<HTMLTextAreaElement>(null)
|
||||
const [isEditing, setIsEditing] = useState<boolean>(false)
|
||||
useEffect(() => {
|
||||
|
||||
@@ -1,14 +1,10 @@
|
||||
'use client'
|
||||
import type { FC } from 'react'
|
||||
import React from 'react'
|
||||
import { useContext } from 'use-context-selector'
|
||||
import type { ThoughtItem, ToolInfoInThought } from '../type'
|
||||
import Tool from '@/app/components/base/chat/chat/thought/tool'
|
||||
import type { Emoji } from '@/app/components/tools/types'
|
||||
|
||||
import I18n from '@/context/i18n'
|
||||
import { getLanguage } from '@/i18n/language'
|
||||
|
||||
export type IThoughtProps = {
|
||||
thought: ThoughtItem
|
||||
allToolIcons: Record<string, string | Emoji>
|
||||
@@ -31,9 +27,6 @@ const Thought: FC<IThoughtProps> = ({
|
||||
allToolIcons,
|
||||
isFinished,
|
||||
}) => {
|
||||
const { locale } = useContext(I18n)
|
||||
const language = getLanguage(locale)
|
||||
|
||||
const [toolNames, isValueArray]: [string[], boolean] = (() => {
|
||||
try {
|
||||
if (Array.isArray(JSON.parse(thought.tool)))
|
||||
|
||||
Reference in New Issue
Block a user