When using MudExRichTextEdit in Blazor Server with global InteractiveServer render mode, the editor UI (toolbar + container) renders immediately, but the initial HTML value doesn’t appear until ~10 seconds later.
This happens even though the bound value is already present on the server side.
Im using the latest Version from MudExRichTextEdit.
I have uploaded a short GIF to illustrate the problem:

Here is some example code
<MudExRichTextEdit Value="Example text" ValueChanged="OnSalesTextOverrideChanged" Tools="_tools" Modules="_modules" Height="235" Immediate="true" Placeholder="" Class="rte" />
@code{ private QuillTool[] _tools = QuillPresets.Minimal.Tools; private IQuillModule[] _modules = QuillPresets.Minimal.Modules; }