Skip to content

Commit

Permalink
chore: fix session option
Browse files Browse the repository at this point in the history
  • Loading branch information
zachdaniel committed Jul 18, 2023
1 parent 83d548e commit 2667209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ash_admin/router.ex
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ defmodule AshAdmin.Router do

live_session :ash_admin,
on_mount: List.wrap(opts[:on_mount]),
session: [{AshAdmin.Router, :__session__, [%{"prefix" => path}, List.wrap(opts[:session])]}],
session: {AshAdmin.Router, :__session__, [%{"prefix" => path}, List.wrap(opts[:session])]},
root_layout: {AshAdmin.LayoutView, :root} do
live(
"#{path}/*route",
Expand Down

0 comments on commit 2667209

Please sign in to comment.