diff --git a/app/Models/User.php b/app/Models/User.php index aa23c1e1eec..45692147b29 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -2237,7 +2237,7 @@ public function profileBeatmapsetsGuest() public function profileBeatmapsetsNominated() { - return Beatmapset::withStates(['approved', 'ranked']) + return Beatmapset::withStates(['approved', 'ranked', 'qualified']) ->whereHas('beatmapsetNominations', fn ($q) => $q->current()->where('user_id', $this->getKey())) ->with('beatmaps'); }