From 279e0d193a7be82f15cff869963a967cadf2ef71 Mon Sep 17 00:00:00 2001 From: Bill He Date: Mon, 2 Oct 2023 18:06:44 -0400 Subject: [PATCH] address nit --- src/hooks/useLocalNotifications.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useLocalNotifications.tsx b/src/hooks/useLocalNotifications.tsx index f8ec4d9..a71c992 100644 --- a/src/hooks/useLocalNotifications.tsx +++ b/src/hooks/useLocalNotifications.tsx @@ -71,7 +71,7 @@ const useLocalNotificationsContext = () => { const status = await squid?.getStatus({ transactionId: txHash, toChainId, fromChainId }); if (status) statuses[txHash] = status; } catch (error) { - // ignore errors for the first 120s since the route might not be available yet + // ignore errors for the first 120s since the status might not be available yet if (!triggeredAt || Date.now() - triggeredAt > STATUS_ERROR_GRACE_PERIOD) { statuses[txHash] = error; }