You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 26, 2025. It is now read-only.
I've been through the process of setting up Blazored Toast on my .NET 8 Blazor Web app. My pages are largely Client 'InteractiveWebAssembly' pages, and I found the calls to the IToastService wheren't doing anything initialy, nothing shown.
I eventually ended up putting the component declaration in my App.Razor instead and put a render mode:
I've been through the process of setting up Blazored Toast on my .NET 8 Blazor Web app. My pages are largely Client 'InteractiveWebAssembly' pages, and I found the calls to the IToastService wheren't doing anything initialy, nothing shown.
I eventually ended up putting the component declaration in my App.Razor instead and put a render mode:
That seems to get it working successfully, stops working if I remove @rendermode. Is this something that needs to be added to the README?