Fixed issue with double render when landing on account or status page

• Fixed:
- issue with double render when landing on account or status page when using "process". Instead now just rendering the page
This commit is contained in:
mgabdev 2021-01-15 15:01:15 -05:00
parent cca9a2d24e
commit 17af74140e

@ -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