From bb2e6d420c479533e72c4cc528d794e91d789a6f Mon Sep 17 00:00:00 2001 From: Danny Davila Date: Wed, 11 Oct 2023 17:42:39 -0500 Subject: [PATCH] Change variable NOTION_KEY --- examples/parse-text-from-any-block-type/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/parse-text-from-any-block-type/index.js b/examples/parse-text-from-any-block-type/index.js index 2ca98c9f..8810c03f 100644 --- a/examples/parse-text-from-any-block-type/index.js +++ b/examples/parse-text-from-any-block-type/index.js @@ -4,7 +4,7 @@ import { config } from "dotenv" config() const pageId = process.env.NOTION_PAGE_ID -const apiKey = process.env.NOTION_API_KEY +const apiKey = process.env.NOTION_KEY const notion = new Client({ auth: apiKey })