Skip to content

Commit

Permalink
docs(register-and-login): fix code sample (#28)
Browse files Browse the repository at this point in the history
`remember` value should be a boolean value not a string value
  • Loading branch information
ismailarilik committed Mar 7, 2024
1 parent e743fe9 commit 4d38199
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/methods/register-and-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function register() {
password: "abcd1234",
},
redirect: { name: "user-account" },
remember: "Rob",
remember: true,
staySignedIn: true,
autoLogin: true,
fetchUser: true,
Expand Down

0 comments on commit 4d38199

Please sign in to comment.