We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28a6d86 commit b6ff8bbCopy full SHA for b6ff8bb
packages/example/src/pages/index.tsx
@@ -241,9 +241,11 @@ const Example = ({ authEnabled }: AppContextProps) => {
241
gap: '20px',
242
}}
243
>
244
- {['rainbow', 'metamask', 'baseAccount'].map((connector) => {
245
- return <WalletButton key={connector} wallet={connector} />;
246
- })}
+ {(['rainbow', 'metaMask', 'baseAccount'] as const).map(
+ (connector) => {
+ return <WalletButton key={connector} wallet={connector} />;
247
+ },
248
+ )}
249
</div>
250
251
0 commit comments