From 4ec0a825ee10c14eaadb3d8c363fce4f66e745e5 Mon Sep 17 00:00:00 2001 From: Corban Riley Date: Tue, 14 May 2024 21:23:27 -0400 Subject: [PATCH] Removing comments --- examples/next/src/app/Providers.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/next/src/app/Providers.tsx b/examples/next/src/app/Providers.tsx index e036f7ac..0860764b 100644 --- a/examples/next/src/app/Providers.tsx +++ b/examples/next/src/app/Providers.tsx @@ -13,12 +13,10 @@ const queryClient = new QueryClient() export interface ProvidersProps { initialState: State | undefined children: React.ReactNode - // wagmiConfig: Config - // kitConfig: KitConfig } export const Providers = (props: ProvidersProps) => { - const { initialState, children /* , wagmiConfig, kitConfig */ } = props + const { initialState, children } = props return (