diff --git a/lib/live_debugger_web/helpers/tracing_helper.ex b/lib/live_debugger_web/helpers/tracing_helper.ex index 3c2c78cd8..773006bb1 100644 --- a/lib/live_debugger_web/helpers/tracing_helper.ex +++ b/lib/live_debugger_web/helpers/tracing_helper.ex @@ -1,4 +1,4 @@ -defmodule LiveDebugger.LiveHelpers.TracingHelper do +defmodule LiveDebuggerWeb.Helpers.TracingHelper do @moduledoc """ This module provides a helper to manage tracing. It is responsible for determining if the tracing should be stopped. diff --git a/lib/live_debugger_web/live/traces_live.ex b/lib/live_debugger_web/live/traces_live.ex index 4597672e0..9f69ef060 100644 --- a/lib/live_debugger_web/live/traces_live.ex +++ b/lib/live_debugger_web/live/traces_live.ex @@ -7,7 +7,7 @@ defmodule LiveDebuggerWeb.TracesLive do require Logger - alias LiveDebugger.LiveHelpers.TracingHelper + alias LiveDebuggerWeb.Helpers.TracingHelper alias LiveDebugger.Services.TraceService alias LiveDebugger.Structs.TraceDisplay alias LiveDebugger.Utils.PubSub, as: PubSubUtils diff --git a/lib/live_debugger_web/router.ex b/lib/live_debugger_web/router.ex index b623210a0..30f98761c 100644 --- a/lib/live_debugger_web/router.ex +++ b/lib/live_debugger_web/router.ex @@ -1,5 +1,5 @@ defmodule LiveDebuggerWeb.Router do - use Phoenix.Router + use Phoenix.Router, helpers: false import Phoenix.LiveView.Router