From 3ec24771754fe8cd341f8560ffd16694e71f4c4c Mon Sep 17 00:00:00 2001 From: Eric Fleming Date: Thu, 20 Jun 2019 20:52:46 -0400 Subject: [PATCH] Updating to match previous logic --- src/Web/Areas/Identity/Pages/Account/Logout.cshtml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Web/Areas/Identity/Pages/Account/Logout.cshtml.cs b/src/Web/Areas/Identity/Pages/Account/Logout.cshtml.cs index 279a26f..ee12cbc 100644 --- a/src/Web/Areas/Identity/Pages/Account/Logout.cshtml.cs +++ b/src/Web/Areas/Identity/Pages/Account/Logout.cshtml.cs @@ -34,7 +34,7 @@ namespace Microsoft.eShopWeb.Web.Areas.Identity.Pages.Account } else { - return Page(); + return RedirectToPage("/Index"); } } }