Skip to content

Commit

Permalink
commented out connector and changed logo size
Browse files Browse the repository at this point in the history
  • Loading branch information
jchaselubitz committed Oct 24, 2024
1 parent 9ac3568 commit aa26b62
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/components/CooperativLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const CooperativLogo: FC<CooperativLogoProps> = ({ onlySymbol }) => {
const isSmall = windowSize.width < 768 || onlySymbol;
return (
<Link href="/">
<img src={isSmall ? symbolLogo : fullLogo} alt="logo" width={isSmall ? '40' : '140'} className="mr-4" />
<img src={isSmall ? symbolLogo : fullLogo} alt="logo" width={isSmall ? '50' : '170'} className="mr-4" />
</Link>
);
};
Expand Down
26 changes: 13 additions & 13 deletions src/web3/connectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,19 +87,19 @@ export const SupportedEthConnectors = [
},
}),
},
{
id: 'walletconnect',
name: 'WalletConnect',
logo: '/assets/images/wallet-logos/walletconnect-logo.svg',
experimental: false,
description: 'Link wallet with a QR code',
connector: new WalletConnectConnector({
options: {
projectId: process.env.NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID as string,
isNewChainsStale: false,
},
}),
},
// {
// id: 'walletconnect',
// name: 'WalletConnect',
// logo: '/assets/images/wallet-logos/walletconnect-logo.svg',
// experimental: false,
// description: 'Link wallet with a QR code',
// connector: new WalletConnectConnector({
// options: {
// projectId: process.env.NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID as string,
// isNewChainsStale: false,
// },
// }),
// },
// {
// id: 'ledger',
// name: 'Ledger Connect',
Expand Down

0 comments on commit aa26b62

Please sign in to comment.