refactor & perf: import { noop } from 'lodash-es' across web (#17439)

This commit is contained in:
yusheng chen
2025-04-06 17:56:08 +08:00
committed by GitHub
parent 7016ccef10
commit c05e03fc09
87 changed files with 271 additions and 184 deletions

View File

@@ -25,6 +25,7 @@ import Toast from '@/app/components/base/toast'
import {
useEducationStatus,
} from '@/service/use-education'
import { noop } from 'lodash-es'
type ProviderContextState = {
modelProviders: ModelProvider[]
@@ -49,7 +50,7 @@ type ProviderContextState = {
}
const ProviderContext = createContext<ProviderContextState>({
modelProviders: [],
refreshModelProviders: () => { },
refreshModelProviders: noop,
textGenerationModelList: [],
supportRetrievalMethods: [],
isAPIKeySet: true,
@@ -72,7 +73,7 @@ const ProviderContext = createContext<ProviderContextState>({
},
isFetchedPlan: false,
enableBilling: false,
onPlanInfoChanged: () => { },
onPlanInfoChanged: noop,
enableReplaceWebAppLogo: false,
modelLoadBalancingEnabled: false,
datasetOperatorEnabled: false,