Skip to content

Commit

Permalink
test: temporarily remove Apollo provider to isolate browser crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
devin-ai-integration[bot] committed Nov 13, 2024
1 parent 4521d69 commit da89078
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions components/ScaffoldEthAppWithProviders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { WagmiProvider } from "wagmi";
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
import ErrorBoundary from "~~/components/ErrorBoundary";
import { wagmiConfig } from "~~/services/web3/wagmiConfig";
import { ClientApolloProvider } from "./ClientApolloProvider";

const queryClient = new QueryClient();

Expand Down Expand Up @@ -43,11 +42,9 @@ export const ScaffoldEthAppWithProviders = ({ children }: { children: React.Reac
<WagmiProvider config={wagmiConfig}>
<QueryClientProvider client={queryClient}>
<RainbowKitProvider>
<ClientApolloProvider>
<ErrorBoundary>
<ScaffoldEthApp>{children}</ScaffoldEthApp>
</ErrorBoundary>
</ClientApolloProvider>
<ErrorBoundary>
<ScaffoldEthApp>{children}</ScaffoldEthApp>
</ErrorBoundary>
</RainbowKitProvider>
</QueryClientProvider>
</WagmiProvider>
Expand Down

0 comments on commit da89078

Please sign in to comment.