Skip to content

Commit

Permalink
chore(example): fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ndom91 committed May 12, 2024
1 parent 678ba0a commit f255fb4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apps/examples/nextjs/auth.ts
Expand Up @@ -37,10 +37,10 @@ import type { NextAuthConfig } from "next-auth"
const storage = createStorage({
driver: process.env.VERCEL
? vercelKVDriver({
url: process.env.AUTH_KV_REST_API_URL,
token: process.env.AUTH_KV_REST_API_TOKEN,
env: false,
})
url: process.env.AUTH_KV_REST_API_URL,
token: process.env.AUTH_KV_REST_API_TOKEN,
env: false,
})
: memoryDriver(),
})

Expand Down

0 comments on commit f255fb4

Please sign in to comment.