diff --git a/osu.Game/Online/PollingComponent.cs b/osu.Game/Online/PollingComponent.cs
index d54b8ca75d..fcea650e2d 100644
--- a/osu.Game/Online/PollingComponent.cs
+++ b/osu.Game/Online/PollingComponent.cs
@@ -16,7 +16,7 @@ namespace osu.Game.Online
///
/// A component which requires a constant polling process.
///
- public abstract class PollingComponent : CompositeDrawable // switch away from Component because InternalChildren are used in usages.
+ public abstract class PollingComponent : CompositeComponent
{
private double? lastTimePolled;
diff --git a/osu.Game/Online/Rooms/OnlinePlayBeatmapAvailabilityTracker.cs b/osu.Game/Online/Rooms/OnlinePlayBeatmapAvailabilityTracker.cs
index 2fd8445980..bb8ec4f6ff 100644
--- a/osu.Game/Online/Rooms/OnlinePlayBeatmapAvailabilityTracker.cs
+++ b/osu.Game/Online/Rooms/OnlinePlayBeatmapAvailabilityTracker.cs
@@ -27,13 +27,10 @@ namespace osu.Game.Online.Rooms
/// This differs from a regular download tracking composite as this accounts for the
/// databased beatmap set's checksum, to disallow from playing with an altered version of the beatmap.
///
- public class OnlinePlayBeatmapAvailabilityTracker : CompositeDrawable
+ public class OnlinePlayBeatmapAvailabilityTracker : CompositeComponent
{
public readonly IBindable SelectedItem = new Bindable();
- // Required to allow child components to update. Can potentially be replaced with a `CompositeComponent` class if or when we make one.
- protected override bool RequiresChildrenUpdate => true;
-
[Resolved]
private RealmAccess realm { get; set; } = null!;