should this dispatch the modal/slideOver?

I'm trying to edit a record in an infolist using a slideOver. The update method is being called, but nothing happens.

 Action::make('edit')
                                            ->mountUsing(function ($record, $form) {
                                                $form->fill($record->toArray());
                                            })
                                            ->slideOver()
                                            ->form([
                                                TextInput::make('title')
                                            ]),


Attaching a screenshot of the body of the response from dev tools. This is using the Simple List Item plugin. Is there some other step I need to take to dispatch the modal?
image.png
Was this page helpful?