We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8234dba commit 5fd5186Copy full SHA for 5fd5186
apps/portal/src/app/connect/auth/frameworks/next/page.mdx
@@ -230,10 +230,10 @@ import { privateKeyToAccount } from "thirdweb/wallets";
230
import { client } from "@/lib/client";
231
import { cookies } from "next/headers";
232
233
-const privateKey = process.env.THIRDWEB_ADMIN_PRIVATE_KEY || "";
+const privateKey = process.env.AUTH_PRIVATE_KEY || "";
234
235
if (!privateKey) {
236
- throw new Error("Missing THIRDWEB_ADMIN_PRIVATE_KEY in .env file.");
+ throw new Error("Missing AUTH_PRIVATE_KEY in .env file.");
237
}
238
239
const thirdwebAuth = createAuth({
0 commit comments