From acaafbde2d281252c3dacdea41dc4b1dabb0cd94 Mon Sep 17 00:00:00 2001 From: Papa Smurf Date: Tue, 17 Oct 2023 11:16:18 +0100 Subject: [PATCH] chore: lint --- src/hooks/useVioletID.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hooks/useVioletID.ts b/src/hooks/useVioletID.ts index a48fa831..aff14ece 100644 --- a/src/hooks/useVioletID.ts +++ b/src/hooks/useVioletID.ts @@ -16,7 +16,7 @@ export function useVioletID() { const violetIdAddress = VIOLET_ID_ADDRESSES[chainId] if (!violetIdAddress) return - + const contract = new Contract(violetIdAddress, VioletIDABI, provider) return contract }, [chainId, provider])