diff --git a/examples/privy-next-tempo/src/providers/PrivyProvider.tsx b/examples/privy-next-tempo/src/providers/PrivyProvider.tsx index 7128273..84b8cc0 100644 --- a/examples/privy-next-tempo/src/providers/PrivyProvider.tsx +++ b/examples/privy-next-tempo/src/providers/PrivyProvider.tsx @@ -2,7 +2,6 @@ import { PrivyProvider as BasePrivyProvider } from "@privy-io/react-auth"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; -import { useEffect, useState } from "react"; import { tempo as configureTempo } from "tempo.ts/chains"; const tempo = configureTempo({ @@ -32,11 +31,3 @@ export function PrivyProvider({ children }: { children: React.ReactNode }) { ); } - -function ViemProvider({ children }: { children: React.ReactNode }) { - const [client, setClient] = useState(); - - useEffect(() => {}, []); - - return <>{children}; -}