From 95810d4afb7f4869056e5be2074d4796ea96be7b Mon Sep 17 00:00:00 2001 From: Wonsuk Choi Date: Tue, 2 Jun 2026 11:14:25 +0900 Subject: [PATCH] refactor(examples/nextjs-suspense-streaming): drop unnecessary 'as string' cast --- examples/react/nextjs-suspense-streaming/src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/react/nextjs-suspense-streaming/src/app/page.tsx b/examples/react/nextjs-suspense-streaming/src/app/page.tsx index 4c17668cbc3..67eedee7b9f 100644 --- a/examples/react/nextjs-suspense-streaming/src/app/page.tsx +++ b/examples/react/nextjs-suspense-streaming/src/app/page.tsx @@ -30,7 +30,7 @@ function useWaitQuery(props: { wait: number }) { }, }) - return [query.data as string, query] as const + return [query.data, query] as const } function MyComponent(props: { wait: number }) {