Skip to content

Commit 58917b6

Browse files
committed
Remove non-null assertion
1 parent 6ea35f2 commit 58917b6

File tree

1 file changed

+1
-1
lines changed
  • playground/rsc-vite-framework/app/routes/mdx-glob.$post

1 file changed

+1
-1
lines changed

playground/rsc-vite-framework/app/routes/mdx-glob.$post/route.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export async function loader({ params }: Route.LoaderArgs) {
1515
}
1616

1717
export function meta({ loaderData }: Route.MetaArgs) {
18-
return [{ title: loaderData!.title }];
18+
return [{ title: loaderData.title }];
1919
}
2020

2121
export function ServerComponent({ loaderData }: Route.ComponentProps) {

0 commit comments

Comments
 (0)