Dispatch event not working on action

EditRecord in panel 1
Action::make('Close Case')
->label(strval(__('close_case')))
->action(function (Model $record) {
$this->dispatch('switchedTeam',[$record])->to(PagesEditStudentCenter::class);
}),
same resource in panel 2 EditRecord
#[On('switchedTeam')]
public function switchedTeam($record)
{
info("list");
dd($record->id);
}
while i execute this close case action the switchedTeam function is not triggered in the panel 2
Was this page helpful?