As your component is using EventCallbacks there is no need to subscribe to an event to manually tell the UI to refresh itself. Blazor will handle this completely automatically.
The removal of the event lets us also remove the need of IDisposable.
Every example is working fine and all tests have passed.
This fixes #158.
As your component is using EventCallbacks there is no need to subscribe to an event to manually tell the UI to refresh itself. Blazor will handle this completely automatically.
The removal of the event lets us also remove the need of IDisposable.
Every example is working fine and all tests have passed.