Skip to content

Commit 4d453b5

Browse files
committed
chore: format
1 parent 5479a4c commit 4d453b5

File tree

2 files changed

+25
-26
lines changed

2 files changed

+25
-26
lines changed

.vscode/settings.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"[graphql]": {
33
"editor.defaultFormatter": "biomejs.biome",
4-
"editor.formatOnSave": true
4+
"editor.formatOnSave": false
55
},
66
"[typescript]": {
77
"editor.defaultFormatter": "biomejs.biome",
@@ -34,5 +34,4 @@
3434
"disabledExtensions": ["Orta.vscode-jest"],
3535
"typescript.tsdk": "node_modules/typescript/lib",
3636
"typescript.enablePromptUseWorkspaceTsdk": true,
37-
"biome.lsp.bin": "./node_modules/.bin/biome"
3837
}

packages/graphql/src/fragments/market.ts

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -6,30 +6,30 @@ import { ReserveFragment } from "./reserve";
66

77
export const MarketUserStateFragment = graphql(
88
`fragment MarketUserState on MarketUserState {
9-
__typename
10-
netWorth
11-
netAPY {
12-
...PercentValue
13-
}
14-
userEarnedAPY {
15-
...PercentValue
16-
}
17-
userDebtAPY {
18-
...PercentValue
19-
}
20-
healthFactor
21-
eModeEnabled
22-
totalCollateralBase
23-
totalDebtBase
24-
availableBorrowsBase
25-
currentLiquidationThreshold {
26-
...PercentValue
27-
}
28-
ltv {
29-
...PercentValue
30-
}
31-
isInIsolationMode
32-
}`,
9+
__typename
10+
netWorth
11+
netAPY {
12+
...PercentValue
13+
}
14+
userEarnedAPY {
15+
...PercentValue
16+
}
17+
userDebtAPY {
18+
...PercentValue
19+
}
20+
healthFactor
21+
eModeEnabled
22+
totalCollateralBase
23+
totalDebtBase
24+
availableBorrowsBase
25+
currentLiquidationThreshold {
26+
...PercentValue
27+
}
28+
ltv {
29+
...PercentValue
30+
}
31+
isInIsolationMode
32+
}`,
3333
[PercentValueFragment],
3434
);
3535
export type MarketUserState = FragmentOf<typeof MarketUserStateFragment>;

0 commit comments

Comments
 (0)