diff --git a/assets/bun.lockb b/assets/bun.lockb index b0a82ae..d9f93cf 100755 Binary files a/assets/bun.lockb and b/assets/bun.lockb differ diff --git a/dev.exs b/dev.exs index af25241..a2f0427 100644 --- a/dev.exs +++ b/dev.exs @@ -5,7 +5,7 @@ Mix.install([ {:ecto_sqlite3, ">= 0.0.0"}, {:error_tracker, path: ".", force: true}, - {:phoenix_playground, "~> 0.1.7"} + {:phoenix_playground, "~> 0.1.8"} ]) otp_app = :error_tracker_dev diff --git a/lib/error_tracker/web/components/core_components.ex b/lib/error_tracker/web/components/core_components.ex index 12eb26d..4c413b4 100644 --- a/lib/error_tracker/web/components/core_components.ex +++ b/lib/error_tracker/web/components/core_components.ex @@ -26,7 +26,7 @@ defmodule ErrorTracker.Web.CoreComponents do ]} {@rest} > - <%= render_slot(@inner_block) %> + {render_slot(@inner_block)} """ end @@ -42,7 +42,7 @@ defmodule ErrorTracker.Web.CoreComponents do ]} {@rest} > - <%= render_slot(@inner_block) %> + {render_slot(@inner_block)} """ end @@ -80,7 +80,7 @@ defmodule ErrorTracker.Web.CoreComponents do class={["text-sm font-medium me-2 py-1 px-2 rounded-lg ring-1 ring-inset", @color_class]} {@rest} > - <%= render_slot(@inner_block) %> + {render_slot(@inner_block)} """ end @@ -124,9 +124,9 @@ defmodule ErrorTracker.Web.CoreComponents do :if={assigns[:title]} class={["text-sm font-semibold mb-2 uppercase text-gray-400", @title_class]} > - <%= @title %> + {@title} - <%= render_slot(@inner_block) %> + {render_slot(@inner_block)} """ end diff --git a/lib/error_tracker/web/components/layouts.ex b/lib/error_tracker/web/components/layouts.ex index 2ad77a4..c958cc9 100644 --- a/lib/error_tracker/web/components/layouts.ex +++ b/lib/error_tracker/web/components/layouts.ex @@ -97,7 +97,7 @@ defmodule ErrorTracker.Web.Layouts do class="whitespace-nowrap flex-0 block py-2 px-3 rounded-lg text-white hover:text-white hover:bg-gray-700 md:hover:bg-transparent md:border-0 md:hover:text-sky-500" {@rest} > - <%= render_slot(@inner_block) %> + {render_slot(@inner_block)} """ diff --git a/lib/error_tracker/web/components/layouts/live.html.heex b/lib/error_tracker/web/components/layouts/live.html.heex index b6b6845..a495577 100644 --- a/lib/error_tracker/web/components/layouts/live.html.heex +++ b/lib/error_tracker/web/components/layouts/live.html.heex @@ -1,4 +1,4 @@ <.navbar id="navbar" {assigns} />
- <%= @inner_content %> + {@inner_content}
diff --git a/lib/error_tracker/web/components/layouts/root.html.heex b/lib/error_tracker/web/components/layouts/root.html.heex index e1b694a..46ac51d 100644 --- a/lib/error_tracker/web/components/layouts/root.html.heex +++ b/lib/error_tracker/web/components/layouts/root.html.heex @@ -8,7 +8,7 @@ - <%= assigns[:page_title] || "🐛 ErrorTracker" %> + {assigns[:page_title] || "🐛 ErrorTracker"}