Livewire infolist component disappear on action/tab click

I displayed two livewire infolist component in a resource view page. The issue is when I click on any action button or relation manager tabs for example, the first component disappears. I've seen other posts tht explained its bcs im rendering more than one livewire comp. But I'm still not really sure on how to work it out for my case.

return $form
            ->schema([
                Livewire::make(StatusFlow::class, ['order' => $form->getRecord()]) //disappears
                    ->columnSpanFull(),
                Tabs::make('Label')
                    ->tabs([
                        Tabs\Tab::make('Order summary')
                            ->schema([
                                Livewire::make(OrderInfoList::class, ['order' => $form->getRecord()]), //works fine
                            ])
image.png
Was this page helpful?