Skip to content

Commit

Permalink
fix anchor link (#762)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhaaaa committed Jun 17, 2024
1 parent d6a8d9d commit 2c4f014
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/build/broadcast.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_label: Broadcast
sidebar_position: 5.2
sidebar_position: 5.3
---

import Tabs from "@theme/Tabs";
Expand Down
8 changes: 4 additions & 4 deletions docs/build/group-chat.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
sidebar_label: Group chat
sidebar_position: 4
sidebar_label: Group chat with MLS
sidebar_position: 5.1
description: Learn how to build group chat with XMTP
---

import Tabs from "@theme/Tabs";
import TabItem from "@theme/TabItem";

# Build group chat with XMTP
# Build group chat with MLS and XMTP

Secure group chat is an important part of every messaging app. In this guide, we cover the essentials of building group chat using XMTP, from the initial steps of ensuring that potential members have v3 identities and starting a new group chat to managing membership and synchronizing group chat details.

Expand Down Expand Up @@ -425,7 +425,7 @@ Updates are also retrieved and added to the local database when streaming and wh
When your user sends a message, you don’t need to sync with the network for them to see their own message. The message gets written to their local database, and it shows up immediately for them. The same applies when your user creates a group.
See [⚠️ Important: Actions that make a local database inaccessible](#️important-actions-that-make-a-local-database-inaccessible).
See [⚠️ Important: Manage actions that make a local database inaccessible](#️-important-manage-actions-that-make-a-local-database-inaccessible).
This means that everything XMTP gets from the network for the user is stored in this local database and never needs to be fetched again. Extra syncing isn’t costly as the process won’t fetch data it already has, but this is just an explanation of why syncing isn’t necessary for data created by a user’s own actions.
Expand Down
2 changes: 1 addition & 1 deletion docs/build/spam.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
sidebar_label: Spam
sidebar_position: 5.1
sidebar_position: 5.2
description: "Learn about spam filters for apps built with XMTP."
---

Expand Down

0 comments on commit 2c4f014

Please sign in to comment.