Skip to content

Commit 76b7c2f

Browse files
committed
Merge branch 'main' into release-next
2 parents c843029 + a920753 commit 76b7c2f

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

contributors.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,13 +263,15 @@
263263
- paulsmithkc
264264
- pavsoldatov
265265
- pcattori
266+
- penx
266267
- petersendidit
267268
- phildl
268269
- phryneas
269270
- pierophp
270271
- printfn
271272
- promet99
272273
- proshunsuke
274+
- pruszel
273275
- pwdcd
274276
- pyitphyoaung
275277
- refusado
@@ -297,6 +299,7 @@
297299
- senseibarni
298300
- sergiodxa
299301
- serranoarevalo
302+
- sevignator
300303
- sgalhs
301304
- sgrishchenko
302305
- shamsup

docs/api/components/Routes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import { Routes, Route } from "react-router"
2020
<Routes>
2121
<Route index element={<StepOne />} />
2222
<Route path="step-2" element={<StepTwo />} />
23-
<Route path="step-3" element={<StepThree />}>
23+
<Route path="step-3" element={<StepThree />} />
2424
</Routes>
2525
```
2626

docs/api/hooks/useViewTransitionState.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: useViewTransitionState
44

55
# useViewTransitionState
66

7-
[MODES: framework, data, declarative]
7+
[MODES: framework, data]
88

99
## Summary
1010

docs/start/modes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Every mode supports any architecture and deployment target, so the question isn'
117117
- have a data layer that either skips pending states (like local first, background data replication/sync) or has its own abstractions for them
118118
- are coming from Create React App (you may want to consider framework mode though)
119119

120-
[→ Get Started with Declarative Mode](./library/installation).
120+
[→ Get Started with Declarative Mode](./declarative/installation).
121121

122122
## API + Mode Availability Table
123123

@@ -175,7 +175,7 @@ This is mostly for the LLMs, but knock yourself out:
175175
| useRoutes ||||
176176
| useSearchParams ||||
177177
| useSubmit ||| |
178-
| useViewTransitionState ||| |
178+
| useViewTransitionState ||| |
179179
| isCookieFunction ||| |
180180
| isSessionFunction ||| |
181181
| createCookie ||| |

docs/tutorials/address-book.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ Now the child route should be rendering through the outlet.
344344

345345
## Client Side Routing
346346

347-
You may or may not have noticed, but when we click the links in the sidebar, the browser is doing a full document request for the next URL instead of client side routing, which completely remounts our app
347+
You may or may not have noticed, but when we click the links in the sidebar, the browser is doing a full document request for the next URL instead of client side routing, which completely remounts our app.
348348

349349
Client side routing allows our app to update the URL without reloading the entire page. Instead, the app can immediately render new UI. Let's make it happen with [`<Link>`][link-component].
350350

0 commit comments

Comments
 (0)