.NET 8 Blazor render mode heads up #535
imkindaprogrammermyself
started this conversation in
General
Replies: 1 comment
-
@imkindaprogrammermyself Thank you for the heads up. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Setting
<Routes @rendermode="@InteractiveServer" />
inApp.razor
will cause/Account/Login
/Account/Register
pages to repeatedly refresh itself. Removing@rendermode="@InteractiveServer"
from Route will fix it though it will also affect Toasts and Preloads making it to not show. Setting@rendermode="@InteractiveServer"
like<Toasts @rendermode="InteractiveServer" class="p-3" Placement="ToastsPlacement.BottomLeft" />
on the component itself will also fix that issue.https://stackoverflow.com/questions/77710968/login-page-of-blazor-8-is-refreshing-in-a-loop
Beta Was this translation helpful? Give feedback.
All reactions