Skip to content

Commit 389976f

Browse files
authored
chore(docs): pnpm format (#11150)
1 parent c9c6f0b commit 389976f

File tree

1 file changed

+2
-2
lines changed
  • docs/pages/getting-started/adapters

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import { Pool } from "@neondatabase/serverless"
6363

6464
export const { handlers, auth, signIn, signOut } = NextAuth(() => {
6565
// Create a `Pool` inside the request handler.
66-
const pool = new Pool({ connectionString: process.env.DATABASE_URL });
66+
const pool = new Pool({ connectionString: process.env.DATABASE_URL })
6767
return {
6868
adapter: PostgresAdapter(pool),
6969
providers: [],
@@ -107,7 +107,7 @@ import { Pool } from "@neondatabase/serverless"
107107

108108
export const { handle, signIn, signOut } = SvelteKitAuth(() => {
109109
// Create a `Pool` inside the request handler.
110-
const pool = new Pool({ connectionString: process.env.DATABASE_URL });
110+
const pool = new Pool({ connectionString: process.env.DATABASE_URL })
111111
return {
112112
adapter: PostgresAdapter(pool),
113113
providers: [],

0 commit comments

Comments
 (0)