Skip to content

Commit 172da3a

Browse files
committed
Merge branch 'main' of https://github.com/appwrite/website
2 parents 4a60299 + b6ed292 commit 172da3a

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

src/routes/community/+page.svelte

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,10 +201,15 @@
201201
<p class="aw-main-body-500 u-margin-block-start-4">
202202
Anyone can join and help Appwrite become better.
203203
</p>
204-
<button class="aw-button is-secondary u-margin-block-start-32">
204+
<a
205+
href="https://github.com/appwrite/appwrite/issues"
206+
target="_blank"
207+
rel="noopener noreferrer"
208+
class="aw-button is-secondary u-margin-block-start-32"
209+
>
205210
<span class="aw-icon-github" aria-hidden="true" />
206211
<span class="">View all Open Issues</span>
207-
</button>
212+
</a>
208213
</div>
209214
<div class="u-stretch">
210215
<table class="aw-table-line">

src/routes/docs/tutorials/react/step-3/+page.markdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ Only one instance of the `Client()` class should be created per app.
4545
Add the following code to it, replacing `<YOUR_PROJECT_ID>` with your project ID.
4646

4747
```js
48-
import { Client } from "appwrite";
48+
import { Client, Databases, Account } from "appwrite";
4949

5050
const client = new Client();
5151
client
5252
.setEndpoint("https://cloud.appwrite.io/v1")
5353
.setProject("<YOUR_PROJECT_ID>"); // Replace with your project ID
5454

5555
export const account = new Account(client);
56-
export const database = new Database(client);
56+
export const database = new Databases(client);
5757
```

src/routes/docs/tutorials/sveltekit/step-3/+page.markdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ Only one instance of the `Client()` class should be created per app.
4444
Add the following code to it, replacing `<YOUR_PROJECT_ID>` with your project ID.
4545

4646
```js
47-
import { Client } from "appwrite";
47+
import { Client, Databases, Account } from "appwrite";
4848

4949
const client = new Client();
5050
client
5151
.setEndpoint("https://cloud.appwrite.io/v1")
5252
.setProject("<YOUR_PROJECT_ID>"); // Replace with your project ID
5353

5454
export const account = new Account(client);
55-
export const database = new Database(client);
55+
export const database = new Databases(client);
5656
```

src/routes/docs/tutorials/vue/step-3/+page.markdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ Only one instance of the `Client()` class should be created per app.
4444
Add the following code to it, replacing `<YOUR_PROJECT_ID>` with your project ID.
4545

4646
```js
47-
import { Client } from "appwrite";
47+
import { Client, Databases, Account } from "appwrite";
4848

4949
const client = new Client();
5050
client
5151
.setEndpoint("https://cloud.appwrite.io/v1")
5252
.setProject("<YOUR_PROJECT_ID>"); // Replace with your project ID
5353

5454
export const account = new Account(client);
55-
export const database = new Database(client);
55+
export const database = new Databases(client);
5656
```

0 commit comments

Comments
 (0)