I have this code in a modal
class EditAuthorizedUser extends ModalComponent {
public function submit() {
$this->closeModalWithEvents(['authorizedUsersUpdated']);
}
}
and
class AuthorizedUsers extends Component {
protected $listeners = ['authorizedUsersUpdated' => '$refresh'];
public function render() {
return view('view.file');
}
}
When I close the modal I only see these events. What am I missing to make this method work?

I have this code in a modal
and
When I close the modal I only see these events. What am I missing to make this method work?
