Skip to content

Commit

Permalink
docs: update code examples (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
brianbancroft authored May 6, 2024
1 parent 1c3a74e commit 184a8eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ export default function Verify() {
const { authError } = useLoaderData<typeof loader>()

return (
<div style={{ display: 'flex' flexDirection: 'column' }}>
<div style={{ display: 'flex', flexDirection: 'column' }}>
{/* Code Verification Form */}
<Form method="POST">
<label htmlFor="code">Code</label>
Expand Down Expand Up @@ -321,7 +321,7 @@ export default function Account() {
let { user } = useLoaderData<typeof loader>()

return (
<div style={{ display: 'flex' flexDirection: 'column' }}>
<div style={{ display: 'flex', flexDirection: 'column' }}>
<h1>{user && `Welcome ${user.email}`}</h1>
<Form action="/logout" method="POST">
<button>Log out</button>
Expand Down

0 comments on commit 184a8eb

Please sign in to comment.