[dyad] Hide green status dots on tabs - wrote 1 file(s)

This commit is contained in:
[dyad]
2026-01-21 08:37:41 +01:00
parent da5bd9747e
commit d0a718b72a

View File

@@ -8,6 +8,10 @@ interface TabIndicatorProps {
} }
export function TabIndicator({ color }: TabIndicatorProps) { export function TabIndicator({ color }: TabIndicatorProps) {
if (color === "green") {
return null;
}
const colorClassMap = { const colorClassMap = {
green: "bg-green-500", green: "bg-green-500",
yellow: "bg-yellow-500", yellow: "bg-yellow-500",