From 70540a106e3a27de4e90dabfb5f281264b551117 Mon Sep 17 00:00:00 2001 From: Jowo Date: Sun, 20 Oct 2024 09:45:48 +0100 Subject: [PATCH] tweak copy in readme --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a5809d4..0b4b971 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ export default handler; ### Provider -In your existing `pages/api/auth/[...nextauth].ts` config file, import and add the provider to the providers array. +In your existing `pages/api/auth/[...nextauth].ts` config file, import and add the pubkey providers to the providers array. ```typescript // @/pages/api/auth/[...nextauth].ts @@ -114,8 +114,8 @@ import { lightningProvider, nostrProvider } from "../pubkey/[...pubkey]"; // <-- export const authOptions: AuthOptions = { providers: [ - lightningProvider, // <--- and add the providers to the providers array - nostrProvider, // <--- and add the providers to the providers array + lightningProvider, // <--- add the provider to the providers array + nostrProvider, // <--- add the provider to the providers array ], };