Skip to content

Commit 395e010

Browse files
Remove ssl param
1 parent 58a8bb2 commit 395e010

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/db/queries.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import {
2222
// https://authjs.dev/reference/adapter/drizzle
2323

2424
// biome-ignore lint: Forbidden non-null assertion.
25-
const client = postgres(`${process.env.POSTGRES_URL!}?sslmode=require`);
25+
const client = postgres(`${process.env.POSTGRES_URL!}`);
2626
const db = drizzle(client);
2727

2828
export async function getUser(email: string): Promise<Array<User>> {

0 commit comments

Comments
 (0)