From 56ff6af85345f5831b0e23d08d7af5ad84b86a0a Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Mon, 10 Nov 2025 00:17:16 +0000 Subject: [PATCH] Add Discord to supported OAuth providers cgen-237776de23054c4e86032501a75d54f8 --- client/components/settings/OAuthConnections.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/components/settings/OAuthConnections.tsx b/client/components/settings/OAuthConnections.tsx index 9b945fe7..eb356103 100644 --- a/client/components/settings/OAuthConnections.tsx +++ b/client/components/settings/OAuthConnections.tsx @@ -4,7 +4,7 @@ import { Badge } from "@/components/ui/badge"; import { cn } from "@/lib/utils"; import { Loader2, Link as LinkIcon, Unlink, ShieldCheck } from "lucide-react"; -export type ProviderKey = "google" | "github"; +export type ProviderKey = "google" | "github" | "discord"; export interface ProviderDescriptor { provider: ProviderKey;