Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
marcdel committed Oct 6, 2023
1 parent bdab976 commit c02fe0d
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 20 deletions.
9 changes: 2 additions & 7 deletions lib/pears_web/components/facilitator_message.ex
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,10 @@ defmodule PearsWeb.FacilitatorMessage do
use PearsWeb, :live_component
use OpenTelemetryDecorator

@impl true
def preload([assigns]) do
{:ok, facilitator} = Pears.facilitator(assigns.team_name)
[Map.put(assigns, :facilitator, facilitator.name)]
end

@impl true
def mount(socket) do
{:ok, socket}
{:ok, facilitator} = Pears.facilitator(socket.assigns.team_name)
{:ok, assign(socket, :facilitator, facilitator.name)}
end

@impl true
Expand Down
7 changes: 3 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,13 @@ defmodule Pears.MixProject do
{:fun_with_flags_ui, "~> 0.9"},
{:hammox, "~> 0.7.0"},
{:opentelemetry_exporter, "~> 1.5"},
{:opentelemetry, "~> 1.3"},
{:opentelemetry_api, "~> 1.2"},
{:opentelemetry, "~> 1.3"},
{:opentelemetry_log_exporter, "~> 0.5.0"},
{:opentelemetry_ecto, "~> 1.1"},
{:open_telemetry_decorator, "~> 1.4"},
{:opentelemetry_phoenix, "~> 1.1"},
{:opentelemetry_cowboy, "~> 0.2"},
{:sentry, "~> 8.0"},
{:slack, "~> 0.23.5"},
{:timber, "~> 3.1"},
{:timber_ecto, "~> 2.1"},
Expand All @@ -63,12 +62,12 @@ defmodule Pears.MixProject do
{:postgrex, ">= 0.0.0"},
{:phoenix_html, "~> 3.3"},
{:phoenix_live_reload, "~> 1.2", only: :dev},
{:phoenix_live_view, "~> 0.19.0"},
{:phoenix_live_view, "~> 0.20.0"},
{:floki, ">= 0.30.0", only: :test},
{:phoenix_live_dashboard, "~> 0.8.0"},
{:esbuild, "~> 0.5", runtime: Mix.env() == :dev},
{:tailwind, "~> 0.2", runtime: Mix.env() == :dev},
{:swoosh, "~> 1.3"},
{:swoosh, "~> 1.12"},
{:finch, "~> 0.13"},
{:telemetry_metrics, "~> 0.6"},
{:telemetry_poller, "~> 1.0"},
Expand Down
Loading

0 comments on commit c02fe0d

Please sign in to comment.