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 271b063 commit dd515e7Copy full SHA for dd515e7
src/components/navBar/ChainSelector.tsx
@@ -17,7 +17,7 @@ export function ChainSelector({ className }: { className?: string }) {
17
await switchChain(wagmiAdapter.wagmiConfig, { chainId });
18
};
19
20
- const filteredChains = getSupportedChains();
+ const chains = getSupportedChains();
21
22
return (
23
<Select
@@ -29,7 +29,7 @@ export function ChainSelector({ className }: { className?: string }) {
29
<SelectValue placeholder="Select Chain" />
30
</SelectTrigger>
31
<SelectContent className="border-grey-600">
32
- {filteredChains.map((chain) => (
+ {chains.map((chain) => (
33
<SelectItem key={chain.id} value={chain.id.toString()}>
34
<img src={chain.icon} className="size-4" alt="" /> {chain.name}
35
</SelectItem>
0 commit comments