From d614053be2c3f73db96fb0dce36e0db5fcdad6eb Mon Sep 17 00:00:00 2001 From: "devin-ai-integration[bot]" <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 16 Jul 2025 17:19:39 -0400 Subject: [PATCH] Fix typo in useThreads pagination docs: change 'notifications' to 'threads' (#2528) --- docs/pages/api-reference/liveblocks-react.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/pages/api-reference/liveblocks-react.mdx b/docs/pages/api-reference/liveblocks-react.mdx index 607e752e787..5fa5a2ec4f7 100644 --- a/docs/pages/api-reference/liveblocks-react.mdx +++ b/docs/pages/api-reference/liveblocks-react.mdx @@ -3228,10 +3228,10 @@ const { } = useThreads(); ``` -- `hasFetchedAll` indicates whether all available inbox notifications have been +- `hasFetchedAll` indicates whether all available threads have been fetched. -- `fetchMore` loads up to 50 more notifications, and is always safe to call. -- `isFetchingMore` indicates whether more notifications are being fetched. +- `fetchMore` loads up to 50 more threads, and is always safe to call. +- `isFetchingMore` indicates whether more threads are being fetched. - `fetchMoreError` returns error statuses resulting from fetching more. ##### Pagination example [#useThreads-pagination-example]