Action works fast but modal window hangs?
does anyone have any ideas as to why this could be?
Tables\Actions\Action::make('Run')
->action(function ($record) {
$service = new MyService();
$result = $service->myServiceClass($record->id);
// dd($result); up to here is fast, the action is ready
// then the modal window hangs also without Notification
Notification::make()
...
})
->requiresConfirmation(),'debug' => FALSE,