"use client"; import React, { useState } from "react"; import { QueryClientProvider, QueryClient } from "@tanstack/react-query"; import trpc, { getBaseUrl } from "@/lib/trpc"; import { httpBatchLink } from "@trpc/react-query"; type Props = { children: React.ReactNode; }; const Providers = ({ children }: Props) => { const [queryClient] = useState(() => new QueryClient()); const [trpcClient] = useState(() => trpc.createClient({ links: [ httpBatchLink({ url: getBaseUrl() + "/api/trpc", headers() { return {}; }, fetch(input, init = {}) { return fetch(input, { ...init, cache: "no-store" }); }, }), ], }) ); return ( {children} ); }; export default Providers;