From 8e4dd407f653c97ed2586636ff6ecdbeed00ea2a Mon Sep 17 00:00:00 2001 From: James Grugett Date: Fri, 26 Aug 2022 23:57:37 -0500 Subject: [PATCH] Test with unused import --- web/hooks/use-follows.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/web/hooks/use-follows.ts b/web/hooks/use-follows.ts index c23543a7..4ca61f30 100644 --- a/web/hooks/use-follows.ts +++ b/web/hooks/use-follows.ts @@ -1,6 +1,9 @@ import { useEffect, useState } from 'react' import { listenForFollowers, listenForFollows } from 'web/lib/firebase/users' -import { listenForContractFollows } from 'web/lib/firebase/contracts' +import { + listenForContractFollows, + getActiveContracts, +} from 'web/lib/firebase/contracts' export const useFollows = (userId: string | null | undefined) => { const [followIds, setFollowIds] = useState()