summaryrefslogtreecommitdiff
path: root/app/helpers/performance_bar_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/performance_bar_helper.rb')
-rw-r--r--app/helpers/performance_bar_helper.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/app/helpers/performance_bar_helper.rb b/app/helpers/performance_bar_helper.rb
index 7518cec160c..b225e4206a9 100644
--- a/app/helpers/performance_bar_helper.rb
+++ b/app/helpers/performance_bar_helper.rb
@@ -1,9 +1,7 @@
# frozen_string_literal: true
module PerformanceBarHelper
- # This is a hack since using `alias_method :performance_bar_enabled?, :peek_enabled?`
- # in WithPerformanceBar breaks tests (but works in the browser).
def performance_bar_enabled?
- peek_enabled?
+ Gitlab::PerformanceBar.enabled_for_request?
end
end