Skip to content

Commit

Permalink
set authToken as string as well
Browse files Browse the repository at this point in the history
  • Loading branch information
troypoulter committed Apr 13, 2024
1 parent 15da292 commit 7b80c9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/db/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as schema from "./schema";

const client = createClient({
url: process.env.DATABASE_URL as string,
authToken: process.env.DATABASE_AUTH_TOKEN,
authToken: process.env.DATABASE_AUTH_TOKEN as string,
});

export const db = drizzle(client, { schema });

0 comments on commit 7b80c9e

Please sign in to comment.