From 303856e160bb6ebc95b99e684e43dde7e645cff9 Mon Sep 17 00:00:00 2001 From: Muhamad Aji Wibisono Date: Mon, 2 Jun 2025 19:31:48 +0700 Subject: [PATCH] feat: added icon for discord connector --- surfsense_web/components/chat/ConnectorComponents.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/surfsense_web/components/chat/ConnectorComponents.tsx b/surfsense_web/components/chat/ConnectorComponents.tsx index 163d5bf..ec2e15a 100644 --- a/surfsense_web/components/chat/ConnectorComponents.tsx +++ b/surfsense_web/components/chat/ConnectorComponents.tsx @@ -11,7 +11,7 @@ import { Link, Webhook, } from 'lucide-react'; -import { IconBrandNotion, IconBrandSlack, IconBrandYoutube, IconBrandGithub, IconLayoutKanban, IconLinkPlus } from "@tabler/icons-react"; +import { IconBrandNotion, IconBrandSlack, IconBrandYoutube, IconBrandGithub, IconLayoutKanban, IconLinkPlus, IconBrandDiscord } from "@tabler/icons-react"; import { Button } from '@/components/ui/button'; import { Connector, ResearchMode } from './types'; @@ -41,6 +41,8 @@ export const getConnectorIcon = (connectorType: string) => { return ; case 'NOTION_CONNECTOR': return ; + case 'DISCORD_CONNECTOR': + return ; case 'DEEP': return ; case 'DEEPER':