Skip to content

Commit 85071a2

Browse files
feat: deletes changes in example
1 parent 8c24de2 commit 85071a2

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

examples/supply/src/ChainSelector.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import {
22
type Chain,
33
type ChainId,
44
ChainsFilter,
5-
type EvmAddress,
65
useAaveChains,
76
} from '@aave/react';
87

@@ -22,11 +21,6 @@ export function ChainSelector({
2221
filter: ChainsFilter.ALL,
2322
});
2423

25-
const firstChain = chains?.[0];
26-
if (firstChain) {
27-
const test: EvmAddress = firstChain.chainId;
28-
}
29-
3024
const handleChange = (event: React.ChangeEvent<HTMLSelectElement>) => {
3125
const selectedChain = chains.find(
3226
(chain) => chain.chainId === Number(event.target.value),

0 commit comments

Comments
 (0)