chore: add notice for iCloud users

production
Paul Makles 2022-11-06 13:21:06 +00:00
parent 3836156f3d
commit 7e89dcfb13
No known key found for this signature in database
GPG Key ID: 5059F398521BB0F6
1 changed files with 10 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import styles from "../Login.module.scss"; import styles from "../Login.module.scss";
import { Text } from "preact-i18n"; import { Text } from "preact-i18n";
import { Button } from "@revoltchat/ui"; import { Button, Tip } from "@revoltchat/ui";
interface Props { interface Props {
email?: string; email?: string;
@ -115,6 +115,15 @@ export function MailProvider({ email }: Props) {
/> />
</Button> </Button>
</a> </a>
{provider[0] === "iCloud Mail" && (
<Tip palette="error">
<span>
iCloud users may not receive any emails due to a block
by Proofpoint. Please use a different email provider if
you do not receive anything.
</span>
</Tip>
)}
</div> </div>
); );
} }