Livewire 3 used named arguments now. Please read the documentation for upgrade. this code will not work now
this.$dispatch('openModal', event.detail);
use this instead
this.$dispatch('openModal', event: event.detail);