Test with unused import

This commit is contained in:
James Grugett 2022-08-26 23:57:37 -05:00
parent b88f9a4fc1
commit 8e4dd407f6

View File

@ -1,6 +1,9 @@
import { useEffect, useState } from 'react' import { useEffect, useState } from 'react'
import { listenForFollowers, listenForFollows } from 'web/lib/firebase/users' 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) => { export const useFollows = (userId: string | null | undefined) => {
const [followIds, setFollowIds] = useState<string[] | undefined>() const [followIds, setFollowIds] = useState<string[] | undefined>()