Skip to content

Commit

Permalink
chore: keep fuel and fuelet connector
Browse files Browse the repository at this point in the history
  • Loading branch information
guimroque committed Oct 15, 2024
1 parent c8b864f commit 805fac6
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import { ChakraProvider } from '@chakra-ui/react';
import { defaultConnectors } from '@fuels/connectors';
import {
defaultConnectors,
FueletWalletConnector,
FuelWalletConnector,
} from '@fuels/connectors';
import { FuelProvider } from '@fuels/react';
import * as Sentry from '@sentry/react';
import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
Expand Down Expand Up @@ -57,7 +61,10 @@ ReactDOM.createRoot(document.getElementById('root')!).render(
<FuelProvider
uiConfig={{ suggestBridge: false }}
fuelConfig={{
connectors: defaultConnectors() as any,
connectors: [
new FuelWalletConnector(),
new FueletWalletConnector(),
],
}}
>
<SocketProvider>
Expand Down

0 comments on commit 805fac6

Please sign in to comment.