I've created a new component and used it inside a Filament View.
I've set up a listener on the ClientView as shown below:
protected $listeners = [
'refreshViewClient' => '$refresh'
];
And I'm calling $this->dispatch('refreshViewClient'); But for some reason, this specific component is not updating along with the entire screen.
For example, within the Header, I have a custom component where I call it as mentioned above, and it works perfectly. However, inside this particular component, it's not working.
This issue occurs whether I try to update the component -> view or view -> component; neither works.