Files
outline/app/scenes/ErrorSuspended.tsx
Nan Yu d1b28499c6 chore: new arrow key navigation (#3229)
* rebuild keyboard navigation lists
* add new keyboard navigation components
* remove references to boundless-arrow-key-navigation
* fix aria-labels on paginated lists everywhere
2022-03-15 10:36:10 -07:00

38 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { observer } from "mobx-react";
import * as React from "react";
import { useTranslation, Trans } from "react-i18next";
import CenteredContent from "~/components/CenteredContent";
import PageTitle from "~/components/PageTitle";
import useStores from "~/hooks/useStores";
const ErrorSuspended = () => {
const { t } = useTranslation();
const { auth } = useStores();
return (
<CenteredContent>
<PageTitle title={t("Your account has been suspended")} />
<h1>
<span role="img" aria-label={t("Warning Sign")}>
</span>{" "}
{t("Your account has been suspended")}
</h1>
<p>
<Trans
defaults="A team admin (<em>{{ suspendedContactEmail }}</em>) has suspended your account. To re-activate your account, please reach out to them directly."
values={{
suspendedContactEmail: auth.suspendedContactEmail,
}}
components={{
em: <strong />,
}}
/>
</p>
</CenteredContent>
);
};
export default observer(ErrorSuspended);