chore(web): strong typing (#2339)

This commit is contained in:
Rhon Joe
2024-02-01 18:07:26 +08:00
committed by GitHub
parent a84e15b8cc
commit b521aafd26
8 changed files with 19 additions and 19 deletions

View File

@@ -83,7 +83,7 @@ const EditCustomCollectionModal: FC<Props> = ({
(async () => {
const customCollection = getCustomCollection()
try {
const { parameters_schema, schema_type } = await parseParamsSchema(debouncedSchema) as any
const { parameters_schema, schema_type } = await parseParamsSchema(debouncedSchema)
const newCollection = produce(customCollection, (draft) => {
draft.schema_type = schema_type
})