Skip to content

Commit 5d532cc

Browse files
committed
chore(docs): prettier
1 parent cfa97b7 commit 5d532cc

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

docs/components/OAuthProviderInstructions/content/components/SetupCode.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ export function SetupCode({ providerId, providerName, highlight }: Props) {
1212
return (
1313
<Code>
1414
<Code.Next>
15-
In Next.js we recommend setting up your configuration in a file in the root of your repository, like at{" "}
16-
<code>auth.ts</code>.
15+
In Next.js we recommend setting up your configuration in a file in the
16+
root of your repository, like at <code>auth.ts</code>.
1717
<br />
1818
<Pre
1919
data-filename="./auth.ts"

docs/pages/getting-started/adapters/drizzle.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,8 @@ export const verificationTokens = pgTable(
118118
})
119119
)
120120

121-
export const authenticators = pgTable("authenticator",
121+
export const authenticators = pgTable(
122+
"authenticator",
122123
{
123124
credentialID: text("credentialID").notNull().unique(),
124125
userId: text("userId")

docs/tailwind.config.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@ module.exports = {
1414
},
1515
keyframes: {
1616
orbit: {
17-
"0%": {
18-
transform: "rotate(0deg) translateY(calc(var(--radius) * 1px)) rotate(0deg)",
19-
},
20-
"100%": {
21-
transform: "rotate(360deg) translateY(calc(var(--radius) * 1px)) rotate(-360deg)",
22-
},
17+
"0%": {
18+
transform:
19+
"rotate(0deg) translateY(calc(var(--radius) * 1px)) rotate(0deg)",
20+
},
21+
"100%": {
22+
transform:
23+
"rotate(360deg) translateY(calc(var(--radius) * 1px)) rotate(-360deg)",
24+
},
2325
},
2426
blob: {
2527
"0%": {

0 commit comments

Comments
 (0)