Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Perronef5 committed Oct 3, 2023
1 parent 82b9b5d commit 2f73e2d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/hooks/useSimulatedTransaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,10 @@ export function useSimulatedTransaction(
}

try {
fee = (await c?.getFeeForMessage(t.message, 'confirmed')).value || fee
fee =
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(await c?.getFeeForMessage(t.message as any, 'confirmed')).value ||
fee
} catch (err) {
logger.error(err)
}
Expand Down

0 comments on commit 2f73e2d

Please sign in to comment.