From 5fc1a33745bbec12f6e387623e288ad0a9a5c2bc Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Sun, 22 Mar 2026 01:01:58 +0100 Subject: [PATCH] fix: use official multicolored Slack logo (pink, blue, green, yellow) --- app/sites/[id]/settings/page.tsx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/app/sites/[id]/settings/page.tsx b/app/sites/[id]/settings/page.tsx index f5f01d4..00bd495 100644 --- a/app/sites/[id]/settings/page.tsx +++ b/app/sites/[id]/settings/page.tsx @@ -34,20 +34,27 @@ import { import { PaperPlaneTilt, Envelope, WebhooksLogo, SpinnerGap, Trash, PencilSimple, Play, Plugs, ShieldCheck } from '@phosphor-icons/react' import { SiDiscord } from '@icons-pack/react-simple-icons' -function SlackIcon({ size = 16, color = '#4A154B' }: { size?: number; color?: string }) { - return +function SlackIcon({ size = 16 }: { size?: number }) { + return ( + + + + + + + ) } const CHANNEL_ICONS: Record = { email: , - slack: , + slack: , discord: , webhook: , } const CHANNEL_ICONS_LG: Record = { email: , - slack: , + slack: , discord: , webhook: , }