File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
dev-packages/e2e-tests/test-applications/nextjs-t3/src/trpc Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 11'use client' ;
22
33import { type QueryClient , QueryClientProvider } from '@tanstack/react-query' ;
4- import { loggerLink , unstable_httpBatchStreamLink } from '@trpc/client' ;
4+ import { loggerLink , httpBatchStreamLink } from '@trpc/client' ;
55import { createTRPCReact } from '@trpc/react-query' ;
66import { type inferRouterInputs , type inferRouterOutputs } from '@trpc/server' ;
77import { useState } from 'react' ;
@@ -46,7 +46,7 @@ export function TRPCReactProvider(props: { children: React.ReactNode }) {
4646 enabled : op =>
4747 process . env . NODE_ENV === 'development' || ( op . direction === 'down' && op . result instanceof Error ) ,
4848 } ) ,
49- unstable_httpBatchStreamLink ( {
49+ httpBatchStreamLink ( {
5050 transformer : SuperJSON ,
5151 url : getBaseUrl ( ) + '/api/trpc' ,
5252 headers : ( ) => {
You can’t perform that action at this time.
0 commit comments