Skip to content

Commit 7ac66b3

Browse files
committed
chore: address linting issues
1 parent 175f0ed commit 7ac66b3

File tree

7 files changed

+3279
-139
lines changed

7 files changed

+3279
-139
lines changed

biome.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,10 @@
108108
"rules": {
109109
"style": {
110110
"noNonNullAssertion": "off"
111-
}
111+
},
112+
"a11y": {
113+
"noLabelWithoutControl": "off"
114+
}
112115
}
113116
}
114117
}

examples/market/src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { AaveProvider, useAaveMarkets, chainId } from '@aave/react';
1+
import { AaveProvider, chainId, useAaveMarkets } from '@aave/react';
22
import { client } from './client';
33

44
function MarketDisplay() {

examples/market/src/client.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ import { AaveClient, staging } from '@aave/react';
33
export const client = AaveClient.create({
44
environment: staging,
55
});
6-

examples/market/src/config.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import { http, createConfig } from 'wagmi'
2-
import { mainnet, sepolia } from 'wagmi/chains'
1+
import { createConfig, http } from 'wagmi';
2+
import { mainnet, sepolia } from 'wagmi/chains';
33

44
export const config = createConfig({
55
chains: [mainnet, sepolia],
66
transports: {
77
[mainnet.id]: http(),
88
[sepolia.id]: http(),
99
},
10-
})
10+
});

0 commit comments

Comments
 (0)