Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/routes/docs/tutorials/react/step-3/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import { Client } from "appwrite";
const client = new Client();
client
.setEndpoint("https://cloud.appwrite.io/v1")
.setProject("<YOUR_PROJECT_ID>"); // Replace with your project IDxw
.setProject("<YOUR_PROJECT_ID>"); // Replace with your project ID

export const account = new Account(client);
export const database = new Database(client);
Expand Down
2 changes: 1 addition & 1 deletion src/routes/docs/tutorials/sveltekit/step-3/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import { Client } from "appwrite";
const client = new Client();
client
.setEndpoint("https://cloud.appwrite.io/v1")
.setProject("<YOUR_PROJECT_ID>"); // Replace with your project IDxw
.setProject("<YOUR_PROJECT_ID>"); // Replace with your project ID

export const account = new Account(client);
export const database = new Database(client);
Expand Down
2 changes: 1 addition & 1 deletion src/routes/docs/tutorials/sveltekit/step-4/+page.markdoc
Original file line number Diff line number Diff line change
@@ -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
---

Expand Down
2 changes: 1 addition & 1 deletion src/routes/docs/tutorials/vue/step-3/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import { Client } from "appwrite";
const client = new Client();
client
.setEndpoint("https://cloud.appwrite.io/v1")
.setProject("<YOUR_PROJECT_ID>"); // Replace with your project IDxw
.setProject("<YOUR_PROJECT_ID>"); // Replace with your project ID

export const account = new Account(client);
export const database = new Database(client);
Expand Down