Skip to content

Commit 353b72b

Browse files
mxkaskeclaude
andauthored
docs: fix broken internal links in full example (#77)
The full example page linked to non-existent routes: - /docs/components -> /docs/ui-components - /docs/database -> /docs/drizzle-orm (and updated link text) Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 27e1653 commit 353b72b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/web/src/content/docs/10-full-example.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ export type FilterState = typeof filterSchema._type;
6464

6565
## 3. Set Up the API Route
6666

67-
Create an API handler with `createDrizzleHandler` that implements three-pass filtering, faceted search, and cursor pagination. See [Database](/docs/database) and [Data Fetching](/docs/data-fetching) for the underlying concepts.
67+
Create an API handler with `createDrizzleHandler` that implements three-pass filtering, faceted search, and cursor pagination. See [Drizzle ORM](/docs/drizzle-orm) and [Data Fetching](/docs/data-fetching) for the underlying concepts.
6868

6969
```tsx
7070
// app/api/route.ts
@@ -100,7 +100,7 @@ export async function GET(req: NextRequest) {
100100

101101
## 4. Render
102102

103-
Wire up `useInfiniteQuery` with `DataTableInfinite` and populate filter fields dynamically from server-side facet data. See [Components](/docs/components) for all available props.
103+
Wire up `useInfiniteQuery` with `DataTableInfinite` and populate filter fields dynamically from server-side facet data. See [Components](/docs/ui-components) for all available props.
104104

105105
```tsx
106106
// client.tsx

0 commit comments

Comments
 (0)