Skip to content

Commit bd18fd7

Browse files
committed
feat(web): link settings integrations to full Tools catalog (#5 reconcile)
1 parent e73bf99 commit bd18fd7

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

apps/web/src/components/settings/integrations-panel.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import type { Integration, IntegrationName } from "@cheatcode/types";
44
import { useAuth } from "@clerk/nextjs";
55
import { useMutation, useQuery, useQueryClient } from "@tanstack/react-query";
6+
import Link from "next/link";
67
import { toast } from "sonner";
78
import { Check, ExternalLink, Loader2, Trash2, Zap } from "@/components/ui/icons";
89
import {
@@ -39,6 +40,13 @@ export function IntegrationsPanel() {
3940
Connect OAuth tools for agent actions. Connections are routed through Composio and
4041
executed server-side by V2 workers.
4142
</p>
43+
<Link
44+
className="mt-4 inline-flex h-9 items-center gap-2 rounded-full border border-[#e6e6e6] bg-white px-4 font-medium text-[#1b1b1b] text-[14px] transition-colors hover:bg-[#f7f7f7]"
45+
href="/tools"
46+
>
47+
Browse all apps
48+
<ExternalLink aria-hidden="true" className="h-4 w-4" />
49+
</Link>
4250
</div>
4351
<div className="grid w-full gap-4 md:grid-cols-2">
4452
{integrationsQuery.isPending ? (

0 commit comments

Comments
 (0)