@@ -4,14 +4,14 @@ defmodule LiveDebuggerWeb do
44 def live_view do
55 quote do
66 use Phoenix.LiveView ,
7- layout: { LiveDebugger .Layout, :app }
7+ layout: { LiveDebuggerWeb .Layout, :app }
88
9- on_mount ( { LiveDebugger .Flash, :add_hook } )
9+ on_mount ( { LiveDebuggerWeb.Hooks .Flash, :add_hook } )
1010
1111 import Phoenix.HTML
1212 import LiveDebuggerWeb.Helpers
13- import LiveDebugger .Components
14- import LiveDebugger .Flash, only: [ push_flash: 2 , push_flash: 3 ]
13+ import LiveDebuggerWeb .Components
14+ import LiveDebuggerWeb.Hooks .Flash, only: [ push_flash: 2 , push_flash: 3 ]
1515 end
1616 end
1717
@@ -21,8 +21,8 @@ defmodule LiveDebuggerWeb do
2121
2222 import Phoenix.HTML
2323 import LiveDebuggerWeb.Helpers
24- import LiveDebugger .Components
25- import LiveDebugger .Flash, only: [ push_flash: 2 , push_flash: 3 ]
24+ import LiveDebuggerWeb .Components
25+ import LiveDebuggerWeb.Hooks .Flash, only: [ push_flash: 2 , push_flash: 3 ]
2626 end
2727 end
2828
@@ -32,7 +32,7 @@ defmodule LiveDebuggerWeb do
3232
3333 import Phoenix.HTML
3434 import LiveDebuggerWeb.Helpers
35- import LiveDebugger .Components
35+ import LiveDebuggerWeb .Components
3636 end
3737 end
3838
0 commit comments