Hi, I've just updated my Filament forms to V3 but cant figure it out why this behavior happen. Markdown editör in Builder > Block > Markdown Editor. ```php Group::make() ->schema([ Builder::make('sidebar_widgets') ->label('Sidebar Widgets') ->hint('Left side') ->blocks([ Block::make('paragraph') ->schema([ MarkdownEditor::make('content') ->label('Paragraph') ->required(), ]), ]), ]) ``` Thanks for your interest.