From f355c060e522e3fab68234840ef816d321bc5711 Mon Sep 17 00:00:00 2001 From: Nolan Leung Date: Fri, 9 Jan 2026 16:54:47 -0500 Subject: [PATCH] chore: remove unused provider in example --- .../privy-next-tempo/src/providers/PrivyProvider.tsx | 9 --------- 1 file changed, 9 deletions(-) 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}; -}