Skip to content

Commit

Permalink
Removing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
corbanbrook committed May 15, 2024
1 parent 04ed079 commit 4ec0a82
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions examples/next/src/app/Providers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
<WagmiProvider config={wagmiConfig} initialState={initialState}>
Expand Down

0 comments on commit 4ec0a82

Please sign in to comment.