Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 committed Jan 1, 2025
1 parent 0820bb5 commit 60db749
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
12 changes: 6 additions & 6 deletions docs/pages/getting-started/adapters/drizzle.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ export const accounts = pgTable(
columns: [account.provider, account.providerAccountId],
}),
},
],
);
]
)

export const sessions = pgTable("session", {
sessionToken: text("sessionToken").primaryKey(),
Expand All @@ -119,8 +119,8 @@ export const verificationTokens = pgTable(
columns: [verificationToken.identifier, verificationToken.token],
}),
},
],
);
]
)

export const authenticators = pgTable(
"authenticator",
Expand All @@ -142,8 +142,8 @@ export const authenticators = pgTable(
columns: [authenticator.userId, authenticator.credentialID],
}),
},
],
);
]
)
```

</Accordion>
Expand Down
1 change: 0 additions & 1 deletion docs/pages/getting-started/session-management/login.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ Just like in other frameworks, you can also pass a provider to the `signIn` func
</Code.Svelte>
<Code.Express>


The Express package runs server-side and therefore it doesn't make sense to create a "SignIn button component". However, to signin or signout with Express, send a request to the appropriate [REST API Endpoints](/reference/core/types#authaction) from your client (i.e. `/auth/signin`, `/auth/signout`, etc.).

To sign in users with Express, you can create a route that handles the sign-in logic. Here is an example:
Expand Down

0 comments on commit 60db749

Please sign in to comment.