Fix code sample error (#32979)

pull/32980/head
Luke Latham 2024-07-01 15:21:00 -04:00 committed by GitHub
parent 2ccea81e14
commit 99c71cfa17
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -72,8 +72,8 @@ public class EmailSender(IOptions<AuthMessageSenderOptions> optionsAccessor,
public Task SendConfirmationLinkAsync(ApplicationUser user, string email,
string confirmationLink) => SendEmailAsync(email, "Confirm your email",
$"Please confirm your account by " +
"<a href='{confirmationLink}'>clicking here</a>.");
"Please confirm your account by " +
$"<a href='{confirmationLink}'>clicking here</a>.");
public Task SendPasswordResetLinkAsync(ApplicationUser user, string email,
string resetLink) => SendEmailAsync(email, "Reset your password",