File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import SmartToyIcon from '@mui/icons-material/SmartToy';
1111import CheckCircleIcon from '@mui/icons-material/CheckCircle' ;
1212import GitHubIcon from '@mui/icons-material/GitHub' ;
1313import ArticleIcon from '@mui/icons-material/Article' ;
14+ import StorageIcon from '@mui/icons-material/Storage' ;
1415
1516function Agents ( ) {
1617 const [ agents , setAgents ] = useState ( [ ] ) ;
@@ -26,7 +27,8 @@ function Agents() {
2627 ...agent ,
2728 services : [
2829 { name : 'Confluence' , icon : 'confluence' , status : 'connected' } ,
29- { name : 'GitHub' , icon : 'github' , status : 'connected' }
30+ { name : 'GitHub' , icon : 'github' , status : 'connected' } ,
31+ { name : 'Supabase' , icon : 'supabase' , status : 'connected' }
3032 ]
3133 } ) ) ;
3234 setAgents ( enhancedAgents ) ;
@@ -40,6 +42,8 @@ function Agents() {
4042 return < GitHubIcon sx = { { fontSize : 16 } } /> ;
4143 case 'confluence' :
4244 return < ArticleIcon sx = { { fontSize : 16 } } /> ;
45+ case 'supabase' :
46+ return < StorageIcon sx = { { fontSize : 16 } } /> ;
4347 default :
4448 return null ;
4549 }
You can’t perform that action at this time.
0 commit comments