Notifications in custom pages return Unable to find component: [filament.livewire.notifications]

I have a custom page that extends Filament\Pages\SimplePage.

When i use a notification, it shows up, but a litte bit later when livewire component update, it throws the error:
Unable to find component: [filament.livewire.notifications]

Tried to add the trait HasNotifications no the livewire component, but it didnt solve.

i'm throwing the notification with:
 Notification::make()
            ->title('Success')
            ->success()
            ->send();

It shows up, i can also interact (close) with it, but a little later comes the error:


Can someone help me to better understand where is the problem?


here is the log from livewire snapshot:
image.png
Was this page helpful?