Update navigation path for successful login

Changed the navigation path in `LoginReceiverPage.razor` to redirect users to `/envelope/{EnvelopeKey}/report` instead of `/envelope/{EnvelopeKey}` upon a successful login. The `forceLoad: true` parameter remains unchanged to ensure a full page reload.
This commit is contained in:
2026-07-01 09:54:59 +02:00
parent df154d83cc
commit b957b4b4bb

View File

@@ -161,7 +161,7 @@
if (result == EnvelopeLoginResult.Success) if (result == EnvelopeLoginResult.Success)
{ {
Navigation.NavigateTo($"/envelope/{Uri.EscapeDataString(EnvelopeKey)}", forceLoad: true); Navigation.NavigateTo($"/envelope/{Uri.EscapeDataString(EnvelopeKey)}/report", forceLoad: true);
return; return;
} }