fix bad redirection (#608)

* fix bad redirection
fix cleanning of local storage on startup

* update all nuget package

* avoid magic string
This commit is contained in:
Cédric Michel
2021-11-01 15:35:26 +01:00
committed by GitHub
parent 5d34222f28
commit ed30f3dcc4
6 changed files with 11 additions and 9 deletions

View File

@@ -125,7 +125,7 @@ namespace Microsoft.eShopWeb.Web.Controllers
await _emailSender.SendEmailConfirmationAsync(email, callbackUrl);
StatusMessage = "Verification email sent. Please check your email.";
return RedirectToAction(nameof(Index));
return RedirectToAction(nameof(MyAccount));
}
[HttpGet]