We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed5df1f commit 615cd98Copy full SHA for 615cd98
1 file changed
src/pages/Dashboard/widgets/Transactions/hooks/useGetTransactions.ts
@@ -31,8 +31,9 @@ export const useGetTransactions = (payload?: TransactionsPropsType) => {
31
...(payload ?? {})
32
});
33
34
- const interpretedTransactions = data.map((transaction) =>
35
- getInterpretedTransaction({ transaction, address, explorerAddress })
+ const interpretedTransactions = data.map(
+ (transaction: ServerTransactionType) =>
36
+ getInterpretedTransaction({ transaction, address, explorerAddress })
37
);
38
39
setTransactions(interpretedTransactions);
0 commit comments