Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix anchor link and make title MLS-specific #762

Merged
merged 1 commit into from
Jun 17, 2024
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 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
Loading