-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
36baca3
commit 3c41809
Showing
1 changed file
with
2 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,6 +40,7 @@ export function PasswordReset(): JSX.Element { | |
) | ||
)} | ||
<h2>Reset password</h2> | ||
<ResetThrottled /> | ||
{preflightLoading ? ( | ||
<Spinner /> | ||
) : !preflight?.email_service_available ? ( | ||
|
@@ -151,11 +152,7 @@ function ResetThrottled(): JSX.Element { | |
return ( | ||
<div className="text-center"> | ||
There have been too many reset requests for the email <b>{requestPasswordReset?.email || 'you typed'}</b>. | ||
Please try again later or{' '} | ||
<Link to="mailto:[email protected]" className="inline-block"> | ||
get in touch | ||
</Link>{' '} | ||
if you think this has been a mistake. | ||
Please try again later or contact support if you think this has been a mistake. | ||
<div className="mt-4"> | ||
<LemonButton | ||
type="primary" | ||
|