chore(web): strong typing (#2339)
This commit is contained in:
@@ -52,7 +52,7 @@ const SettingBuiltInTool: FC<Props> = ({
|
||||
(async () => {
|
||||
setIsLoading(true)
|
||||
try {
|
||||
const list = await fetchBuiltInToolList(collection.name) as Tool[]
|
||||
const list = await fetchBuiltInToolList(collection.name)
|
||||
setTools(list)
|
||||
const currTool = list.find(tool => tool.name === toolName)
|
||||
if (currTool) {
|
||||
|
||||
@@ -381,7 +381,7 @@ const Configuration: FC = () => {
|
||||
|
||||
useEffect(() => {
|
||||
(async () => {
|
||||
const collectionList = await fetchCollectionList() as Collection[]
|
||||
const collectionList = await fetchCollectionList()
|
||||
setCollectionList(collectionList)
|
||||
fetchAppDetail({ url: '/apps', id: appId }).then(async (res: any) => {
|
||||
setMode(res.mode)
|
||||
|
||||
Reference in New Issue
Block a user