diff --git a/content/tutorials/beginner-onboarding-js.mdx b/content/tutorials/beginner-onboarding-js.mdx index 505698ae..af1e4688 100644 --- a/content/tutorials/beginner-onboarding-js.mdx +++ b/content/tutorials/beginner-onboarding-js.mdx @@ -73,7 +73,7 @@ You will now be working inside the folder you created called ZooPractice. * Once inside the correct folder, input the following commands into **Powershell**. This is going to install the dependencies needed to use the Zoo Typescript API. Make sure to replace "YOUR-API-TOKEN" with the token we mentioned earlier! ```bash -$env:KITTYCAD_TOKEN="YOUR-API-TOKEN" +$env:ZOO_API_TOKEN="YOUR-API-TOKEN" yarn install ``` @@ -131,7 +131,7 @@ Another method for changing directories is if you see the folder you want to mov * Once inside the correct folder, input the following command into **Terminal**. This is going to install the dependencies needed to use the Zoo Typescript API. ```sh -export KITTYCAD_TOKEN="YOUR-API-TOKEN" +export ZOO_API_TOKEN="YOUR-API-TOKEN" yarn install ``` @@ -187,7 +187,7 @@ You will now be working inside the folder you created called ZooPractice. * Once inside the correct folder, input the following command into **Terminal**. This is going to install the dependencies needed to use the Zoo Typescript API. ```sh -export KITTYCAD_TOKEN="YOUR-API-TOKEN" +export ZOO_API_TOKEN="YOUR-API-TOKEN" yarn install ```