From f255fb45797f74702ce3a0151ccdec55d1befded Mon Sep 17 00:00:00 2001 From: ndom91 Date: Sun, 12 May 2024 18:41:49 +0200 Subject: [PATCH] chore(example): fix lint --- apps/examples/nextjs/auth.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/examples/nextjs/auth.ts b/apps/examples/nextjs/auth.ts index 0b7bf20c34..62165444e6 100644 --- a/apps/examples/nextjs/auth.ts +++ b/apps/examples/nextjs/auth.ts @@ -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(), })