File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ export const UserBalanceFragment = graphql(
145145 balances {
146146 ...TokenAmount
147147 }
148- fiatAmount { # (currency: $currency) { TODO: restore when API is fixed
148+ fiatAmount(currency: $currency) {
149149 ...FiatAmount
150150 }
151151 supplyApy(metric: HIGHEST) {
Original file line number Diff line number Diff line change @@ -1231,9 +1231,9 @@ export function useSetSpokeUserPositionManagerAction(): UseAsyncTask<
12311231 * ```
12321232 */
12331233export function usePreviewAction (
1234- _ : Required < CurrencyQueryOptions > = DEFAULT_QUERY_OPTIONS ,
1234+ _options : Required < CurrencyQueryOptions > = DEFAULT_QUERY_OPTIONS ,
12351235) : UseAsyncTask < PreviewRequest , PreviewUserPosition , UnexpectedError > {
1236- // TODO: wire up options once AAVE-1916 is implemented
1236+ // TODO: wire up _options once AAVE-1916 is implemented
12371237 const client = useAaveClient ( ) ;
12381238
12391239 return useAsyncTask ( ( request : PreviewRequest ) => preview ( client , request ) ) ;
You can’t perform that action at this time.
0 commit comments