import { useTranslation } from "react-i18next"; import { Button, ButtonGroup, Tooltip } from "@mui/material"; import { checkService } from "@/services/cmds"; import { useVerge } from "@/hooks/use-verge"; import useSWR from "swr"; interface Props { value?: string; onChange?: (value: string) => void; } export const StackModeSwitch = (props: Props) => { const { value, onChange } = props; const { verge } = useVerge(); const { enable_service_mode } = verge ?? {}; // service mode const { data: serviceStatus } = useSWR("checkService", checkService, { revalidateIfStale: false, shouldRetryOnError: false, }); const { t } = useTranslation(); return ( ); };