diff --git a/src/routes/docs/tutorials/react/step-3/+page.markdoc b/src/routes/docs/tutorials/react/step-3/+page.markdoc index 32d6a3de3e..39ee7729e8 100644 --- a/src/routes/docs/tutorials/react/step-3/+page.markdoc +++ b/src/routes/docs/tutorials/react/step-3/+page.markdoc @@ -50,7 +50,7 @@ import { Client } from "appwrite"; const client = new Client(); client .setEndpoint("https://cloud.appwrite.io/v1") - .setProject(""); // Replace with your project IDxw + .setProject(""); // Replace with your project ID export const account = new Account(client); export const database = new Database(client); diff --git a/src/routes/docs/tutorials/sveltekit/step-3/+page.markdoc b/src/routes/docs/tutorials/sveltekit/step-3/+page.markdoc index db14a2ba2e..24bc29bd42 100644 --- a/src/routes/docs/tutorials/sveltekit/step-3/+page.markdoc +++ b/src/routes/docs/tutorials/sveltekit/step-3/+page.markdoc @@ -49,7 +49,7 @@ import { Client } from "appwrite"; const client = new Client(); client .setEndpoint("https://cloud.appwrite.io/v1") - .setProject(""); // Replace with your project IDxw + .setProject(""); // Replace with your project ID export const account = new Account(client); export const database = new Database(client); diff --git a/src/routes/docs/tutorials/sveltekit/step-4/+page.markdoc b/src/routes/docs/tutorials/sveltekit/step-4/+page.markdoc index b8e95ce333..b62dcb5cb0 100644 --- a/src/routes/docs/tutorials/sveltekit/step-4/+page.markdoc +++ b/src/routes/docs/tutorials/sveltekit/step-4/+page.markdoc @@ -1,7 +1,7 @@ --- layout: tutorial title: Add authentication -description: Add Appwrite authentication to you Svlete app using your Svelte store. +description: Add Appwrite authentication to you Svelte app using your Svelte store. step: 4 --- diff --git a/src/routes/docs/tutorials/vue/step-3/+page.markdoc b/src/routes/docs/tutorials/vue/step-3/+page.markdoc index 9746518c12..d9e5d2d2fe 100644 --- a/src/routes/docs/tutorials/vue/step-3/+page.markdoc +++ b/src/routes/docs/tutorials/vue/step-3/+page.markdoc @@ -49,7 +49,7 @@ import { Client } from "appwrite"; const client = new Client(); client .setEndpoint("https://cloud.appwrite.io/v1") - .setProject(""); // Replace with your project IDxw + .setProject(""); // Replace with your project ID export const account = new Account(client); export const database = new Database(client);