Provide a way to disconnect supabase (#95)

This commit is contained in:
Will Chen
2025-05-06 12:24:31 -07:00
committed by GitHub
parent 20362d7b08
commit ba60b80b89
2 changed files with 66 additions and 0 deletions

View File

@@ -12,6 +12,7 @@ import { Button } from "@/components/ui/button";
import { ArrowLeft } from "lucide-react";
import { useRouter } from "@tanstack/react-router";
import { GitHubIntegration } from "@/components/GitHubIntegration";
import { SupabaseIntegration } from "@/components/SupabaseIntegration";
export default function SettingsPage() {
const { theme, setTheme } = useTheme();
@@ -142,6 +143,7 @@ export default function SettingsPage() {
</h2>
<div className="space-y-4">
<GitHubIntegration />
<SupabaseIntegration />
</div>
</div>