From d0a718b72a051dd7815e420b1d980ef9bb788219 Mon Sep 17 00:00:00 2001 From: "[dyad]" Date: Wed, 21 Jan 2026 08:37:41 +0100 Subject: [PATCH] [dyad] Hide green status dots on tabs - wrote 1 file(s) --- src/components/tab-indicator.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/tab-indicator.tsx b/src/components/tab-indicator.tsx index 305ff31..7f20adb 100644 --- a/src/components/tab-indicator.tsx +++ b/src/components/tab-indicator.tsx @@ -8,6 +8,10 @@ interface TabIndicatorProps { } export function TabIndicator({ color }: TabIndicatorProps) { + if (color === "green") { + return null; + } + const colorClassMap = { green: "bg-green-500", yellow: "bg-yellow-500",