```C# // Index.cshtml @page "{formaction?}" public void OnGetLoginCallback() { // Do sign-in stuff return RedirectToPage(new { message = "Hello {user}"}); } ``` Expected: Redirects to `/Index` Actual: RedirectToPage redirects to `/Index/LoginCallback` (resulting in a loop).
Expected: Redirects to
/IndexActual: RedirectToPage redirects to
/Index/LoginCallback(resulting in a loop).