"use client"; import { useEffect, useState } from "react"; import { Dialog, DialogContent, DialogTitle, DialogTrigger, } from "../ui/dialog"; import { OctagonAlert } from "lucide-react"; import A from "./Link"; import { Button } from "../ui/button"; import { useRouter } from "@/lib/useRouter"; export function SwitchEnvPopup() { const [open, setOpen] = useState(false); const router = useRouter(); useEffect(() => { if (localStorage.getItem("mhsf--switch-env-alert") !== "true") { setOpen(true); } }, []) const setDialogTrigger = (v: boolean) => { setOpen(v) if (!v) { localStorage.setItem("mhsf--switch-env-alert", "true") } } return ( Wait! Did you have an old account?

If you had an account before Jan. 28th, 2025, you have a legacy account that needs to be converted.

Legacy accounts can be converted by going to{" "} Special:ClerkConvertionPage and logging in with your old account & creating a new account. Your old account settings & content will automatically be transferred to your new account.{" "}

{" "}
); }