From c1c3684c91c184e2ec824b9eec75a1a82f14b2e6 Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 11 Nov 2025 00:38:56 +0000 Subject: [PATCH] fix: correct collection documentation links in overview Changed hash-based links (#localstoragecollection and #localonlycollection) to proper file path links (./collections/local-storage-collection.md and ./collections/local-only-collection.md) in the overview documentation. --- docs/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/overview.md b/docs/overview.md index 93463a970..de13c4717 100644 --- a/docs/overview.md +++ b/docs/overview.md @@ -64,7 +64,7 @@ Collections can be populated in many ways, including: - fetching data, for example [from API endpoints using TanStack Query](https://tanstack.com/query/latest) - syncing data, for example [using a sync engine like ElectricSQL](https://electric-sql.com/) -- storing local data, for example [using localStorage for user preferences and settings](#localstoragecollection) or [in-memory client data or UI state](#localonlycollection) +- storing local data, for example [using localStorage for user preferences and settings](./collections/local-storage-collection.md) or [in-memory client data or UI state](./collections/local-only-collection.md) - from live collection queries, creating [derived collections as materialised views](#using-live-queries) Once you have your data in collections, you can query across them using live queries in your components.