lint: fix issue of no-unused-vars (#23375)

This commit is contained in:
Matri Qi
2025-08-05 11:12:30 +08:00
committed by GitHub
parent b946378b38
commit 75f722a959
14 changed files with 23 additions and 28 deletions

View File

@@ -82,7 +82,7 @@ const Panel: FC<NodePanelProps<LLMNodeType>> = ({
Toast.notify({ type: 'warning', message: `${t('common.modelProvider.parametersInvalidRemoved')}: ${keys.map(k => `${k} (${removedDetails[k]})`).join(', ')}` })
handleCompletionParamsChange(filtered)
}
catch (e) {
catch {
Toast.notify({ type: 'error', message: t('common.error') })
handleCompletionParamsChange({})
}

View File

@@ -5,7 +5,7 @@ import { Validator } from 'jsonschema'
import produce from 'immer'
import { z } from 'zod'
export const checkNodeValid = (payload: LLMNodeType) => {
export const checkNodeValid = (_payload: LLMNodeType) => {
return true
}
@@ -280,7 +280,7 @@ const validator = new Validator()
export const validateSchemaAgainstDraft7 = (schemaToValidate: any) => {
const schema = produce(schemaToValidate, (draft: any) => {
// Make sure the schema has the $schema property for draft-07
// Make sure the schema has the $schema property for draft-07
if (!draft.$schema)
draft.$schema = 'http://json-schema.org/draft-07/schema#'
})