File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/extension/ui/src/components Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ export const CatalogGrid: React.FC<CatalogGridProps> = ({
50
50
buttonsLoading,
51
51
setButtonsLoading,
52
52
updateMCPClientStates,
53
- isFetching : mcpFetching
53
+ isLoading : mcpLoading
54
54
} = useMCPClientContext ( ) ;
55
55
56
56
@@ -109,7 +109,7 @@ export const CatalogGrid: React.FC<CatalogGridProps> = ({
109
109
return < CircularProgress />
110
110
}
111
111
112
- const hasMCPConfigured = mcpFetching || Object . values ( mcpClientStates || { } ) . some ( state => state . exists && state . configured ) ;
112
+ const hasMCPConfigured = mcpLoading || Object . values ( mcpClientStates || { } ) . some ( state => state . exists && state . configured ) ;
113
113
114
114
return (
115
115
< Stack spacing = { 2 } justifyContent = 'center' alignItems = 'center' >
You can’t perform that action at this time.
0 commit comments