@@ -12,7 +12,7 @@ import { ToolReference } from "../../models";
12
12
import { ToolsTable } from "./ToolsTable" ;
13
13
14
14
export const ToolsPage : React . FC = ( ) => {
15
- const [ fetchedData , setFetchedData ] = useState < ToolReference [ ] | string > ( [ ] ) ;
15
+ const [ fetchedData , setFetchedData ] = useState < ToolReference [ ] > ( [ ] ) ;
16
16
const [ isLoading , setIsLoading ] = useState ( true ) ;
17
17
const [ isAddModalOpen , setIsAddModalOpen ] = useState ( false ) ;
18
18
const [ isImportModalOpen , setIsImportModalOpen ] = useState ( false ) ;
@@ -21,7 +21,7 @@ export const ToolsPage: React.FC = () => {
21
21
22
22
useEffect ( ( ) => {
23
23
listTools ( ) . then ( ( result ) => {
24
- setFetchedData ( result . data ) ;
24
+ setFetchedData ( result . data as ToolReference [ ] ) ;
25
25
setIsLoading ( false ) ;
26
26
} ) ;
27
27
} , [ listTools ] ) ;
@@ -43,7 +43,7 @@ export const ToolsPage: React.FC = () => {
43
43
setIsAddModalOpen ( false ) ;
44
44
setErrorMessage ( null ) ;
45
45
listTools ( ) . then ( ( result ) => {
46
- setFetchedData ( result . data ) ;
46
+ setFetchedData ( result . data as ToolReference [ ] ) ;
47
47
} ) ;
48
48
} catch ( error ) {
49
49
console . error ( "Error adding tool:" , error ) ;
@@ -64,15 +64,15 @@ export const ToolsPage: React.FC = () => {
64
64
}
65
65
setIsImportModalOpen ( false ) ;
66
66
listTools ( ) . then ( ( result ) => {
67
- setFetchedData ( result . data ) ;
67
+ setFetchedData ( result . data as ToolReference [ ] ) ;
68
68
} ) ;
69
69
} ;
70
70
71
71
const handleDeleteTool = async ( toolName ?: string ) => {
72
72
try {
73
73
await removeTool ( { tool : toolName } ) ;
74
74
listTools ( ) . then ( ( result ) => {
75
- setFetchedData ( result . data ) ;
75
+ setFetchedData ( result . data as ToolReference [ ] ) ;
76
76
} ) ;
77
77
} catch ( error ) {
78
78
console . error ( "Error deleting tool:" , error ) ;
0 commit comments