We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b83becf + f70ac7b commit 4ec9ff1Copy full SHA for 4ec9ff1
1 file changed
src/hooks/useTransactionHistory.ts
@@ -93,7 +93,7 @@ export function useTransactionHistory({
93
94
return {
95
...data,
96
- entries: data.entries.map(completeHistoryEntry),
+ entries: await Promise.all(data.entries.map(completeHistoryEntry)),
97
}
98
99
0 commit comments