diff --git a/ee/app/helpers/ee/gitlab_routing_helper.rb b/ee/app/helpers/ee/gitlab_routing_helper.rb
index 929b3fef6fc7ab84d290caef52bd14f8d6c17069..bd2d2b9433079b0f74c7d705613351f2fd2f97d3 100644
--- a/ee/app/helpers/ee/gitlab_routing_helper.rb
+++ b/ee/app/helpers/ee/gitlab_routing_helper.rb
@@ -72,12 +72,6 @@ def project_vulnerability_path(project, vulnerability, *args)
       project_security_vulnerability_path(project, vulnerability, *args)
     end
 
-    def upgrade_plan_path(group)
-      return profile_billings_path if group.blank?
-
-      group_billings_path(group)
-    end
-
     def self.url_helper(route_name)
       define_method("#{route_name}_url") do |*args|
         path = public_send(:"#{route_name}_path", *args) # rubocop:disable GitlabSecurity/PublicSend
diff --git a/ee/spec/helpers/ee/gitlab_routing_helper_spec.rb b/ee/spec/helpers/ee/gitlab_routing_helper_spec.rb
index d257a98a35799aebafc4219286ef01a9ef38b8f7..cda266d32617df3d5a36b1ff8ad9ddf45a15c5e0 100644
--- a/ee/spec/helpers/ee/gitlab_routing_helper_spec.rb
+++ b/ee/spec/helpers/ee/gitlab_routing_helper_spec.rb
@@ -192,26 +192,6 @@
     end
   end
 
-  describe '#upgrade_plan_path' do
-    subject { upgrade_plan_path(group) }
-
-    context 'when the group is present' do
-      let(:group) { build_stubbed(:group) }
-
-      it "returns the group billing path" do
-        expect(subject).to eq(group_billings_path(group))
-      end
-    end
-
-    context 'when the group is blank' do
-      let(:group) { nil }
-
-      it "returns the profile billing path" do
-        expect(subject).to eq(profile_billings_path)
-      end
-    end
-  end
-
   describe '#vulnerability_url' do
     let_it_be(:vulnerability) { create(:vulnerability) }