Skip to content

Commit 0c18913

Browse files
ci: apply automated fixes
1 parent 1a6d262 commit 0c18913

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/router/framework/react/api/router/RouteOptionsType.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ type loader = (
146146
- If this function returns a promise, the route will be put into a pending state and cause rendering to suspend until the promise resolves. If this route's pendingMs threshold is reached, the `pendingComponent` will be shown until it resolves. If the promise rejects, the route will be put into an error state and the error will be thrown during render.
147147
- If this function returns a `TLoaderData` object, that object will be stored on the route match until the route match is no longer active. It can be accessed using the `useLoaderData` hook in any component that is a child of the route match before another `<Outlet />` is rendered.
148148
- Deps must be returned by your `loaderDeps` function in order to appear.
149-
- `parentMatchPromise` is a promise *if* the parent route's `loader` returns a promise as well, otherwise it is the resolved parent match object.
149+
- `parentMatchPromise` is a promise _if_ the parent route's `loader` returns a promise as well, otherwise it is the resolved parent match object.
150150
151151
> 🚧 `opts.navigate` has been deprecated and will be removed in the next major release. Use `throw redirect({ to: '/somewhere' })` instead. Read more about the `redirect` function [here](../redirectFunction.md).
152152

0 commit comments

Comments
 (0)