Skip to content

Commit 95832e2

Browse files
committed
fix links
1 parent 61569b0 commit 95832e2

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/routes/solid-router/concepts/actions.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Actions provide several benefits:
2626
- **Integrated state management:**
2727
Solid Router automatically tracks the execution state of an action, simplifying reactive UI feedback.
2828
- **Automatic data revalidation:**
29-
After an action successfully completes, Solid Router revalidates relevant [`queries`](/solid-router/concepts/data-fetching/queries), ensuring the UI reflects the latest data.
29+
After an action successfully completes, Solid Router revalidates relevant [`queries`](/solid-router/data-fetching/queries), ensuring the UI reflects the latest data.
3030
- **Progressive enhancement:**
3131
When used with HTML forms, actions enable functionality even if JavaScript is not yet loaded.
3232

@@ -281,7 +281,7 @@ To prevent this, ensure every code path in an action returns a value, such as `{
281281
## Automatic data revalidation
282282

283283
After server data changes, the application's can become stale.
284-
To solve this, Solid Router automatically revalidates all [queries](/solid-router/concepts/data-fetching/queries) used in the same page after a successful action.
284+
To solve this, Solid Router automatically revalidates all [queries](/solid-router/data-fetching/queries) used in the same page after a successful action.
285285
This ensures any component using that data is automatically updated with the freshest information.
286286

287287
For example, if a page displays a list of registered devices and includes a form to register a new one, the list will automatically update after the form is submitted.

src/routes/solid-router/reference/data-apis/create-async-store.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ The initial value of the returned store before the fetcher resolves.
8787
- **Type:** `boolean`
8888
- **Required:** No
8989

90-
If `true`, [streaming](/solid-router/concepts/data-fetching/streaming) will be deferred until the resource has resolved.
90+
If `true`, [streaming](/solid-router/data-fetching/streaming) will be deferred until the resource has resolved.
9191

9292
#### `reconcile`
9393

src/routes/solid-router/reference/data-apis/create-async.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The initial value of the returned signal before the fetcher finishes executing.
9090
- **Type:** `boolean`
9191
- **Required:** No
9292

93-
If `true`, [streaming](/solid-router/concepts/data-fetching/streaming) will be deferred until the fetcher finishes executing.
93+
If `true`, [streaming](/solid-router/data-fetching/streaming) will be deferred until the fetcher finishes executing.
9494

9595
## Return value
9696

src/routes/solid-start/building-your-application/data-fetching.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ title: "Data fetching"
33
---
44

55
Fetching data from a remote API or database is a core task for most applications.
6-
[Solid](/) and [Solid Router](/solid-router) provide foundational tools like the [`createResource` primitive](/guides/fetching-data) and [queries](/solid-router/concepts/data-fetching/queries) to manage asynchronous data.
6+
[Solid](/) and [Solid Router](/solid-router) provide foundational tools like the [`createResource` primitive](/guides/fetching-data) and [queries](/solid-router/data-fetching/queries) to manage asynchronous data.
77

88
SolidStart builds on these capabilities, extending them to provide a comprehensive solution for data fetching in a full-stack environment.
99

1010
This page assumes you are familiar with the fundamental concepts of Solid and Solid Router.
11-
If you are a beginner, we highly recommend starting with the [queries documentation](/solid-router/concepts/data-fetching/queries).
11+
If you are a beginner, we highly recommend starting with the [queries documentation](/solid-router/data-fetching/queries).
1212
You can also find many practical examples in the [data fetching how-to guide](/solid-start/guides/data-fetching).
1313

1414
## Server functions and queries

0 commit comments

Comments
 (0)