diff --git a/cluster-autoscaler/main.go b/cluster-autoscaler/main.go
index 2c1272525bcaf273631f5d6b37a476ef2e4ca3cd..7d090a7416ce304ac739de48be685c3f6d698393 100644
--- a/cluster-autoscaler/main.go
+++ b/cluster-autoscaler/main.go
@@ -118,12 +118,6 @@ func buildAutoscaler(context ctx.Context, debuggingSnapshotter debuggingsnapshot
 	drainabilityRules := rules.Default(deleteOptions)
 
 	var snapshotStore clustersnapshot.ClusterSnapshotStore = store.NewDeltaSnapshotStore(autoscalingOptions.ClusterSnapshotParallelism)
-	if autoscalingOptions.DynamicResourceAllocationEnabled {
-		// TODO(DRA): Remove this once DeltaSnapshotStore is integrated with DRA.
-		klog.Warningf("Using BasicSnapshotStore instead of DeltaSnapshotStore because DRA is enabled. Autoscaling performance/scalability might be decreased.")
-		snapshotStore = store.NewBasicSnapshotStore()
-	}
-
 	opts := core.AutoscalerOptions{
 		AutoscalingOptions:   autoscalingOptions,
 		FrameworkHandle:      fwHandle,