import { CircleHelpIcon } from "lucide-react"; import { useTranslation } from "react-i18next"; import { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, } from "@/components/ui/alert-dialog"; import { Button } from "@/components/ui/button"; export function FeedbackAlert() { const { t } = useTranslation("memshell"); return ( {t("shellNotWork.title")}
  1. {t("shellNotWork.step1")}
  2. {t("shellNotWork.step2")}
{t("common:cancel")} window.open( "https://github.com/ReaJason/MemShellParty/issues/new?template=%E5%86%85%E5%AD%98%E9%A9%AC%E7%94%9F%E6%88%90-bug-%E4%B8%8A%E6%8A%A5.md", ) } > {t("common:feedback")}
); }