im trying to follow it but applying it into my case. my case: import action on a relation manager table - refresh the table once the importation has finished
// app/Filament/Imports/ContactsImporter.phpprotected function afterSave(): void{ $this->emit('refreshContactsRelationManagerTable');}
// app/Filament/Imports/ContactsImporter.phpprotected function afterSave(): void{ $this->emit('refreshContactsRelationManagerTable');}
but the table doesnt reload. i guess this is because it depends on the notification that has been sent. so im not sure how to emit it also in the notification or something similar