The LiveView page for conferences was nested inside the controllers folder, and rendered through the intermediate step of PageController and using live_render.
This PR moves it to its proper live folder as that's the suggested place for LiveView pages in Phoenix.
Also, this fixes this HTML issue where a duplicate nested <main> tag was found.
The LiveView page for conferences was nested inside the
controllers
folder, and rendered through the intermediate step ofPageController
and usinglive_render
.This PR moves it to its proper
live
folder as that's the suggested place for LiveView pages in Phoenix.Also, this fixes this HTML issue where a duplicate nested
<main>
tag was found.