Skip to content

Commit f75ddc6

Browse files
committed
Show supabase integration
1 parent 314e5ac commit f75ddc6

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

web/src/Agents.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import SmartToyIcon from '@mui/icons-material/SmartToy';
1111
import CheckCircleIcon from '@mui/icons-material/CheckCircle';
1212
import GitHubIcon from '@mui/icons-material/GitHub';
1313
import ArticleIcon from '@mui/icons-material/Article';
14+
import StorageIcon from '@mui/icons-material/Storage';
1415

1516
function 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
}

0 commit comments

Comments
 (0)