import { Button } from "@ariakit/react"; import { cx } from "../class-names.ts"; import { interactiveText } from "../common.css.ts"; import { Letterhead, LetterheadHeading, LetterheadParagraph, } from "../Letterhead/index.tsx"; import { useAppActions } from "../store/index.tsx"; export function AccountIssueView(props: { reload: () => void }) { const { reload } = props; const { logout } = useAppActions(); return ( Account issue You appear to be logged into an account that no longer exists, or is not working as expected. Sorry about that! {"You can try "} {" and in again. "} {"If the issue persists, please get in touch at "} support@indietabletop.club {"."} ); }