Skip to content

Commit

Permalink
docs(guides/client-data): Remove extra quote (#8451)
Browse files Browse the repository at this point in the history
  • Loading branch information
Deanmv authored Jan 8, 2024
1 parent c821253 commit 229cf98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guides/client-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ You may want to mix and match data loading strategies in your application such t

A route that only depends on a server loader looks like this:

```tsx filename="app/routes/server-data-route.tsx
```tsx filename=app/routes/server-data-route.tsx
import type { LoaderFunctionArgs } from "@remix-run/node";
import { json } from "@remix-run/node";

Expand All @@ -122,7 +122,7 @@ export default function Component() {

A route that only depends on a client loader looks like this.

```tsx filename="app/routes/client-data-route.tsx
```tsx filename=app/routes/client-data-route.tsx
import type { ClientLoaderFunctionArgs } from "@remix-run/react";

export async function clientLoader({
Expand Down

0 comments on commit 229cf98

Please sign in to comment.