Skip to content

Commit b1895bd

Browse files
authored
chore: pnpm format (#11078)
1 parent 5dc7ed4 commit b1895bd

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

docs/pages/getting-started/migrating-to-v5.mdx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -283,12 +283,7 @@ import authConfig from "./auth.config"
283283

284284
const prisma = new PrismaClient()
285285

286-
export const {
287-
auth,
288-
handlers,
289-
signIn,
290-
signOut,
291-
} = NextAuth({
286+
export const { auth, handlers, signIn, signOut } = NextAuth({
292287
adapter: PrismaAdapter(prisma),
293288
session: { strategy: "jwt" },
294289
...authConfig,

docs/pages/getting-started/providers/keycloak.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ app.use("/auth/*", ExpressAuth({ providers: [Keycloak] }))
7979

8080
Enable the "Client Authentication" option to retrieve your client secret in the Credentials tab.
8181

82-
Prior to v20, create an `openid-connect` client in Keycloak with "confidential" as the "Access Type".
82+
Prior to v20, create an `openid-connect` client in Keycloak with "confidential" as the "Access Type".
8383

8484
- Issuer should include the realm – e.g. `https://my-keycloak-domain.com/realms/My_Realm`

packages/core/src/providers/twitter.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,7 @@ export default function Twitter(
187187
authorization:
188188
"https://x.com/i/oauth2/authorize?scope=users.read tweet.read offline.access",
189189
token: "https://api.x.com/2/oauth2/token",
190-
userinfo:
191-
"https://api.x.com/2/users/me?user.fields=profile_image_url",
190+
userinfo: "https://api.x.com/2/users/me?user.fields=profile_image_url",
192191
profile({ data }) {
193192
return {
194193
id: data.id,

0 commit comments

Comments
 (0)