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.
This commit is contained in:
Mauricio Siu
2025-10-05 00:48:07 -06:00
parent 586195b5c8
commit e934d4f4ce

View File

@@ -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<string | undefined>();