From 68a7afb6da75a8c18fc96092727174d8c16c7d27 Mon Sep 17 00:00:00 2001 From: Wyatt Barnes Date: Fri, 19 Apr 2024 12:03:52 -1000 Subject: [PATCH 1/2] Missing space in package import code example --- docs/sdk/access-control/quick-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/sdk/access-control/quick-start.md b/docs/sdk/access-control/quick-start.md index 93e229b9..de11c6af 100644 --- a/docs/sdk/access-control/quick-start.md +++ b/docs/sdk/access-control/quick-start.md @@ -38,7 +38,7 @@ If you are using `NodeJS` you should install `@lit-protocol/lit-node-client-node Use the **Lit JS SDK V4**: ```jsx -import * as LitJsSdkfrom "@lit-protocol/lit-node-client"; +import * as LitJsSdk from "@lit-protocol/lit-node-client"; ``` @@ -476,4 +476,4 @@ By now you should have successfully created an Access Control Condition and perf 3. [Off-Chain Conditions](../access-control/lit-action-conditions.md). 4. [Custom Contract Calls](../access-control/evm/custom-contract-calls.md). -Did you find this guide helpful? If not, please [get in touch](https://docs.google.com/forms/d/e/1FAIpQLScBVsg-NhdMIC1H1mozh2zaVX0V4WtmEPSPrtmqVtnj_3qqNw/viewform?usp=send_form). \ No newline at end of file +Did you find this guide helpful? If not, please [get in touch](https://docs.google.com/forms/d/e/1FAIpQLScBVsg-NhdMIC1H1mozh2zaVX0V4WtmEPSPrtmqVtnj_3qqNw/viewform?usp=send_form). From 0421cf1c1b5ef2ecb69eb2ebef0f017d3c197f21 Mon Sep 17 00:00:00 2001 From: Wyatt Barnes Date: Fri, 19 Apr 2024 12:10:57 -1000 Subject: [PATCH 2/2] Address another missing space --- docs/sdk/access-control/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sdk/access-control/quick-start.md b/docs/sdk/access-control/quick-start.md index de11c6af..0d3304e2 100644 --- a/docs/sdk/access-control/quick-start.md +++ b/docs/sdk/access-control/quick-start.md @@ -53,7 +53,7 @@ Within a file (in the Lit example repos it will likely be called `lit.js`), set `client.connect()` will return a promise that resolves when you are connected to the Lit Network. ```jsx -const client =new LitJsSdk.LitNodeClient({ +const client = new LitJsSdk.LitNodeClient({ litNetwork: 'habanero', });