import { useSelector } from "react-redux"; import { useTranslation } from "react-i18next"; import { cn } from "#/utils/utils"; import { AgentState } from "#/types/agent-state"; import { RootState } from "#/store"; import { I18nKey } from "#/i18n/declaration"; export function TerminalStatusLabel() { const { t } = useTranslation(); const { curAgentState } = useSelector((state: RootState) => state.agent); return (