From 17af74140ea98f2858bc2f44f7a91d7efe4506c5 Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Fri, 15 Jan 2021 15:01:15 -0500 Subject: [PATCH] Fixed issue with double render when landing on account or status page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit • Fixed: - issue with double render when landing on account or status page when using "process". Instead now just rendering the page --- app/controllers/react_controller.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/controllers/react_controller.rb b/app/controllers/react_controller.rb index 10f7ff04..3c3a25b4 100644 --- a/app/controllers/react_controller.rb +++ b/app/controllers/react_controller.rb @@ -30,7 +30,7 @@ class ReactController < ApplicationController end def status_show - return process(:react) + render 'react' end def status_embed @@ -38,7 +38,7 @@ class ReactController < ApplicationController end def account_show - return process(:react) + render 'react' end private