Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
noyyyy committed Apr 14, 2024
1 parent 762dc41 commit e1ffded
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/client/src/Web3Provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
} from "wagmi/chains";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import { ConnectKitProvider, getDefaultConfig } from "connectkit";
import React from "react";

const config = createConfig(
getDefaultConfig({
Expand Down Expand Up @@ -47,7 +48,7 @@ const config = createConfig(

const queryClient = new QueryClient();

export const Web3Provider = ({ children }) => {
export const Web3Provider = ({ children }: { children: React.ReactNode }) => {
return (
<WagmiProvider config={config}>
<QueryClientProvider client={queryClient}>
Expand Down

0 comments on commit e1ffded

Please sign in to comment.