From 2a83400d84ad0104566bcfe19e94d502bf1973d6 Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Fri, 15 Jan 2021 15:02:24 -0500 Subject: [PATCH] Removed unncessary set_data_for_meta before_action in ReactController react route MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Removed: - unncessary set_data_for_meta before_action in ReactController react route --- app/controllers/react_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/react_controller.rb b/app/controllers/react_controller.rb index 3c3a25b4..52e334ba 100644 --- a/app/controllers/react_controller.rb +++ b/app/controllers/react_controller.rb @@ -12,7 +12,7 @@ class ReactController < ApplicationController before_action :set_referrer_policy_header, only: [:react, :home, :status_embed, :status_show, :account_show] before_action :set_initial_state_json, only: [:react, :home, :status_embed, :status_show, :account_show] - before_action :set_data_for_meta, only: [:react, :home, :status_embed, :status_show, :account_show] + before_action :set_data_for_meta, only: [:status_embed, :status_show, :account_show] before_action :set_instance_presenter