From e934d4f4ce9453a8071f5235fcb5393c07480f71 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sun, 5 Oct 2025 00:48:07 -0600 Subject: [PATCH] refactor: remove unused badgeStateColor variable in ShowDockerLogsStack component - Eliminated the unused badgeStateColor variable to clean up the code. - Improved overall readability and maintainability of the ShowDockerLogsStack component. --- apps/dokploy/components/dashboard/compose/logs/show-stack.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/dokploy/components/dashboard/compose/logs/show-stack.tsx b/apps/dokploy/components/dashboard/compose/logs/show-stack.tsx index 4c004918..98c6c047 100644 --- a/apps/dokploy/components/dashboard/compose/logs/show-stack.tsx +++ b/apps/dokploy/components/dashboard/compose/logs/show-stack.tsx @@ -37,8 +37,6 @@ interface Props { serverId?: string; } -badgeStateColor; - export const ShowDockerLogsStack = ({ appName, serverId }: Props) => { const [option, setOption] = useState<"swarm" | "native">("native"); const [containerId, setContainerId] = useState();