diff --git a/app/Http/Livewire/Common/Notifications/Exports.php b/app/Http/Livewire/Common/Notifications/Exports.php index 9b19b8f9c..e56830969 100644 --- a/app/Http/Livewire/Common/Notifications/Exports.php +++ b/app/Http/Livewire/Common/Notifications/Exports.php @@ -58,7 +58,7 @@ class Exports extends Component { $query = user()->notifications()->unread() ->where('type', 'App\Notifications\Common\ExportCompleted') - ->orWhere('type', 'App\Notifications\Common\ExportFailed'); + ->where('type', 'App\Notifications\Common\ExportFailed'); if ($limit) { $notifications = $query->paginate($limit); diff --git a/app/Http/Livewire/Common/Notifications/Imports.php b/app/Http/Livewire/Common/Notifications/Imports.php index 885754465..05cc41b0f 100644 --- a/app/Http/Livewire/Common/Notifications/Imports.php +++ b/app/Http/Livewire/Common/Notifications/Imports.php @@ -58,7 +58,7 @@ class Imports extends Component { $query = user()->notifications()->unread() ->where('type', 'App\Notifications\Common\ImportCompleted') - ->orWhere('type', 'App\Notifications\Common\ImportFailed'); + ->where('type', 'App\Notifications\Common\ImportFailed'); if ($limit) { $notifications = $query->paginate($limit);