grover isnt mounted with thread id anymore

This commit is contained in:
2022-08-03 13:42:44 +02:00
parent 9594a9bc04
commit 4bd3634abb
3 changed files with 11 additions and 13 deletions

View File

@ -7,8 +7,8 @@ defmodule SomethingErlangWeb.ThreadLive.Show do
require Logger
@impl true
def mount(%{"id" => id} = _params, _session, socket) do
Grover.mount(socket.assigns.current_user, id)
def mount(_params, _session, socket) do
Grover.mount(socket.assigns.current_user)
{:ok, socket}
end