From 2f1d0cf224d6d7c7b1236f99129c4221480e880d Mon Sep 17 00:00:00 2001 From: Dexter Date: Tue, 24 May 2022 12:30:53 +0100 Subject: [PATCH] fix: lint --- apps/token/src/hooks/use-get-user-tranche-balances.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/token/src/hooks/use-get-user-tranche-balances.ts b/apps/token/src/hooks/use-get-user-tranche-balances.ts index 58476abc5..56787d39c 100644 --- a/apps/token/src/hooks/use-get-user-tranche-balances.ts +++ b/apps/token/src/hooks/use-get-user-tranche-balances.ts @@ -56,5 +56,5 @@ export const useGetUserTrancheBalances = ( error: e as Error, }); } - }, [address, appDispatch, vesting]); + }, [address, appDispatch, tranches, vesting]); };