From 41c6594892bd01bcf39d4a336e693a982e2d3330 Mon Sep 17 00:00:00 2001 From: Gen Tamura Date: Fri, 4 Apr 2025 15:59:48 +0900 Subject: [PATCH] Update 02-nextjs-app-router.mdx I have modified the code highlighting added in the documentation steps. --- content/docs/02-getting-started/02-nextjs-app-router.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/02-getting-started/02-nextjs-app-router.mdx b/content/docs/02-getting-started/02-nextjs-app-router.mdx index 8a8bc840e606..1de3a89c7c82 100644 --- a/content/docs/02-getting-started/02-nextjs-app-router.mdx +++ b/content/docs/02-getting-started/02-nextjs-app-router.mdx @@ -244,7 +244,7 @@ Notice the blank response in the UI? This is because instead of generating a tex To display the tool invocations in your UI, update your `app/page.tsx` file: -```tsx filename="app/page.tsx" highlight="18-24" +```tsx filename="app/page.tsx" highlight="16-21" 'use client'; import { useChat } from '@ai-sdk/react';