Skip to content

Commit f6845b0

Browse files
authored
docs(nextjs-suspense-streaming): remove unnecessary curly braces (TanStack#6738)
1 parent 6e7ff08 commit f6845b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/react/nextjs-suspense-streaming/src/app/providers.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function Providers(props: { children: React.ReactNode }) {
2323
<ReactQueryStreamedHydration>
2424
{props.children}
2525
</ReactQueryStreamedHydration>
26-
{<ReactQueryDevtools initialIsOpen={false} />}
26+
<ReactQueryDevtools initialIsOpen={false} />
2727
</QueryClientProvider>
2828
)
2929
}

0 commit comments

Comments
 (0)