Skip to content

Commit

Permalink
Merge pull request #163 from Infergo/patch-1
Browse files Browse the repository at this point in the history
Update user-auth.md
  • Loading branch information
ryan-haskell committed Mar 15, 2024
2 parents 2bba55e + 44bdf6d commit c4fcbe0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/guide/user-auth.md
Expand Up @@ -2160,7 +2160,7 @@ page user shared route =
|> Page.withLayout (toLayout user)


toLayout : Auth.User -> Model -> Layouts.Layout
toLayout : Auth.User -> Model -> Layouts.Layout Msg
toLayout user model =
Layouts.Sidebar
{ title = "Dashboard"
Expand Down Expand Up @@ -2195,7 +2195,7 @@ page user shared route =
|> Page.withLayout (toLayout user)


toLayout : Auth.User -> Model -> Layouts.Layout
toLayout : Auth.User -> Model -> Layouts.Layout Msg
toLayout user model =
Layouts.Sidebar
{ title = "Dashboard"
Expand Down Expand Up @@ -2224,7 +2224,7 @@ page user shared route =
|> Page.withLayout (toLayout user)


toLayout : Auth.User -> Model -> Layouts.Layout
toLayout : Auth.User -> Model -> Layouts.Layout Msg
toLayout user model =
Layouts.Sidebar
{ title = "Profile"
Expand Down

0 comments on commit c4fcbe0

Please sign in to comment.