Textarea doesn't appear in my component when V3 update

I have a component when I add a text area by this way:

public function getCommentComponent(): ComponentContainer
    {
        return ComponentContainer::make($this->getLivewire())
            ->parentComponent($this)
            ->components([
                Textarea::make($this->getCommentComponentName())
            ])
            ->reactive();
    }

and this is printed in the view by:
{{ $getCommentComponent() }}

This works correctly in v2, but when I update to v3, the text area doesn't appear.

use Filament\Forms\Components\Textarea;
Solution
Ow, i found the problem. I have the text area into a <x-filament::modal> in the x-slot name="subheading".

This slot don't exists in v3. I replace this slot as a simple div into the modal component. So now, the text area is printed correctly.
Was this page helpful?