Skip to content

Commit

Permalink
fix: it seems I can remove ssr and would work?
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosgj94 committed Apr 18, 2024
1 parent c283df5 commit b326883
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions context/Web3Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ const metadata = {
};

export const config = createConfig({
chains: [PUB_CHAIN, mainnet],
ssr: true,
chains: [PUB_CHAIN],
// ssr: true,
transports: {
[PUB_CHAIN.id]: http(PUB_WEB3_ENDPOINT, { batch: true }),
[mainnet.id]: http(PUB_WEB3_ENDPOINT, { batch: true }),
// [mainnet.id]: http(PUB_WEB3_ENDPOINT, { batch: true }),
},
connectors: [
walletConnect({
projectId: PUB_WALLET_CONNECT_PROJECT_ID,
metadata,
showQrModal: false,
}),
coinbaseWallet({ appName: metadata.name, appLogoUrl: metadata.icons[0] }),
// coinbaseWallet({ appName: metadata.name, appLogoUrl: metadata.icons[0] }),
],
});

0 comments on commit b326883

Please sign in to comment.