Select box is flickering when loading/refreshing the page

The select box is flickering just like in the video. How to fix it?
3 Replies
neverender24
neverender2412mo ago
@Leandro Ferreira all my select is made using this code Select::make('transport_id') ->label('Transport') ->relationship('transport', 'description') ->createOptionForm([ TextInput::make('description') ->required() ]) ->options(Transport::all()->pluck('description', 'id')->toArray()) ->searchable()
LeandroFerreira
LeandroFerreira12mo ago
because it is loading try here https://demo.filamentphp.com/
neverender24
neverender2412mo ago
Okay so I thought it's not normal, I find this weird in v3 since its as if seamless in v2. It will be better with updates I think. Thanks