diff --git a/includes/recurly.pages.inc b/includes/recurly.pages.inc
index 22af586..1552fb4 100644
--- a/includes/recurly.pages.inc
+++ b/includes/recurly.pages.inc
@@ -444,19 +444,6 @@ function template_preprocess_recurly_subscription_plan_select(&$variables) {
       'selected' => FALSE,
     );
 
-    // If we have a pending subscription, make that its shown as selected rather
-    // than the current active subscription. This should allow users to switch
-    // back to a previous plan after making a pending switch to another one.
-    foreach ($subscriptions as $subscription) {
-      if (!empty($subscription->pending_subscription)) {
-        if ($subscription->pending_subscription->plan->plan_code === $plan_code) {
-          $variables['filtered_plans'][$plan_code]['selected'] = TRUE;
-        }
-      }
-      elseif ($subscription->plan->plan_code === $plan_code) {
-        $variables['filtered_plans'][$plan_code]['selected'] = TRUE;
-      }
-    }
   }
 
   // Check if this is an account that is creating a new subscription, either
