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:
parent
cca9a2d24e
commit
17af74140e
|
@ -30,7 +30,7 @@ class ReactController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def status_show
|
def status_show
|
||||||
return process(:react)
|
render 'react'
|
||||||
end
|
end
|
||||||
|
|
||||||
def status_embed
|
def status_embed
|
||||||
|
@ -38,7 +38,7 @@ class ReactController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def account_show
|
def account_show
|
||||||
return process(:react)
|
render 'react'
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
Loading…
Reference in New Issue