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

@@ -29,7 +29,7 @@ const ConfigCredential: FC<Props> = ({
const { team_credentials: credentialValue, name: collectionName } = collection
useEffect(() => {
fetchBuiltInToolCredentialSchema(collectionName).then((res) => {
setCredentialSchema(toolCredentialToFormSchemas(res as any))
setCredentialSchema(toolCredentialToFormSchemas(res))
})
}, [])
const [tempCredential, setTempCredential] = React.useState<any>(credentialValue)