Skip to content

Commit 7a8ee44

Browse files
authored
docs: fix import path to use ./+types/... correctly (#14239)
* docs: remove invalid '+' character from import path * Add wo-o29 to contributors list * fix: update import path for Route in product.tsx
1 parent a1a9f68 commit 7a8ee44

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

contributors.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,7 @@
426426
- willsmithte
427427
- Willvillegas
428428
- wkovacs64
429+
- wo-o29
429430
- woodywoodsta
430431
- xavier-lc
431432
- xcsnowcity

docs/start/modes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default [
7474
You'll then have access to the Route Module API with type-safe params, loaderData, code splitting, SPA/SSR/SSG strategies, and more.
7575

7676
```ts filename=product.tsx
77-
import { Route } from "+./types/product.tsx";
77+
import { Route } from "./+types/product.tsx";
7878

7979
export async function loader({ params }: Route.LoaderArgs) {
8080
let product = await getProduct(params.pid);

0 commit comments

Comments
 (0)