From f70ac7bf584913160e49a4342c8d35b78775205c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Ram=C3=ADrez?= Date: Thu, 2 Oct 2025 21:16:55 -0300 Subject: [PATCH] fix: await history entries --- src/hooks/useTransactionHistory.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useTransactionHistory.ts b/src/hooks/useTransactionHistory.ts index a0cadc391..239ed3cd3 100644 --- a/src/hooks/useTransactionHistory.ts +++ b/src/hooks/useTransactionHistory.ts @@ -93,7 +93,7 @@ export function useTransactionHistory({ return { ...data, - entries: data.entries.map(completeHistoryEntry), + entries: await Promise.all(data.entries.map(completeHistoryEntry)), } }