Closed SimonLab closed 1 year ago
see https://elixirforum.com/t/liveview-0-18-3-warning-passing-a-string-as-a-layout-template-in-use-options-is-deprecated/51411
In app_web update the live_view function to use the :live atom:
:live
def live_view do quote do use Phoenix.LiveView, layout: {AppWeb.LayoutView, :live} unquote(view_helpers()) end end
resolved in https://github.com/dwyl/mvp/pull/209/files#diff-7463d24924f37978d63f55c6971881f43a47d00a7773eeec1fd97d2b651ec016
see https://elixirforum.com/t/liveview-0-18-3-warning-passing-a-string-as-a-layout-template-in-use-options-is-deprecated/51411
In app_web update the live_view function to use the
:live
atom: