From 545a026ada32a84dd45c749152d79fe3af99eaf7 Mon Sep 17 00:00:00 2001 From: Ben Goldberg Date: Wed, 28 Feb 2024 08:37:35 -0800 Subject: [PATCH] fix (#5439) --- src/featuresToUnlock/featureUnlockChecks.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/featuresToUnlock/featureUnlockChecks.ts b/src/featuresToUnlock/featureUnlockChecks.ts index 57fb82c150e..80dbf80dff1 100644 --- a/src/featuresToUnlock/featureUnlockChecks.ts +++ b/src/featuresToUnlock/featureUnlockChecks.ts @@ -1,6 +1,7 @@ import { unlockableAppIconCheck } from './unlockableAppIconCheck'; import { AdworldIcon, + FarcasterIcon, FiniliarIcon, FiniliarIconBase, GoldDogeIcon, @@ -31,4 +32,5 @@ export const featureUnlockChecks: FeatureUnlockCheck[] = [ async (walletsToCheck: EthereumAddress[]) => await unlockableAppIconCheck(ZorbIcon, walletsToCheck), async (walletsToCheck: EthereumAddress[]) => await unlockableAppIconCheck(PoolboyIcon, walletsToCheck), async (walletsToCheck: EthereumAddress[]) => await unlockableAppIconCheck(AdworldIcon, walletsToCheck), + async (walletsToCheck: EthereumAddress[]) => await unlockableAppIconCheck(FarcasterIcon, walletsToCheck), ];