mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-05 23:25:44 -05:00
merge: remote-tracking branch 'origin/production'
This commit is contained in:
commit
5b31ce494e
2 changed files with 14 additions and 2 deletions
|
@ -2,7 +2,10 @@
|
||||||
# Build and publish release to production server
|
# Build and publish release to production server
|
||||||
|
|
||||||
# Remote Server
|
# Remote Server
|
||||||
REMOTE=revolt-de-nrb-1
|
if [ -z "$REMOTE" ]; then
|
||||||
|
echo "Please set REMOTE!"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
# Remote Directory
|
# Remote Directory
|
||||||
REMOTE_DIR=/root/revite
|
REMOTE_DIR=/root/revite
|
||||||
|
|
|
@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue