We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74c845a commit 3f84504Copy full SHA for 3f84504
examples/demo_router.exs
@@ -38,16 +38,14 @@ defmodule DemoRouter do
38
pipeline :browser do
39
plug :accepts, ["html"]
40
plug :fetch_session
41
- plug :put_root_layout, html: {PhoenixPlayground.Layouts, :root}
+ plug :put_root_layout, html: {PhoenixPlayground.Layout, :root}
42
plug :put_secure_browser_headers
43
end
44
45
scope "/" do
46
pipe_through :browser
47
48
- live_session :default, layout: {PhoenixPlayground.Layouts, :live} do
49
- live "/", CounterLive
50
- end
+ live "/", CounterLive
51
52
53
0 commit comments