diff --git a/apps/mobile/package.json b/apps/mobile/package.json index a4fb54d0b..eaa22c802 100644 --- a/apps/mobile/package.json +++ b/apps/mobile/package.json @@ -64,7 +64,7 @@ "uuid": "^3.4.0", "viem": "^1.13.1", "zod": "^3.22.2", - "zustand": "^4.4.1" + "zustand": "^4.4.2" }, "devDependencies": { "@babel/core": "^7.22.11", diff --git a/apps/web/package.json b/apps/web/package.json index d58aae5d8..57020d612 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -47,7 +47,7 @@ "viem": "^1.13.1", "wagmi": "^1.4.2", "zod": "^3.22.2", - "zustand": "^4.4.1" + "zustand": "^4.4.2" }, "devDependencies": { "@lenstube/browser": "*", diff --git a/packages/constants/feature-flags.ts b/packages/constants/feature-flags.ts index 88e61ba0f..2268d15f2 100644 --- a/packages/constants/feature-flags.ts +++ b/packages/constants/feature-flags.ts @@ -1,5 +1,4 @@ import { CORE_MEMBERS } from './verified' -import { AAVE_MEMBERS } from './verified/aave-members' export enum FEATURE_FLAGS { POST_WITH_SOURCE_URL = 'PostWithSource', @@ -23,6 +22,6 @@ export const featureFlags: FeatureFlag[] = [ }, { flag: FEATURE_FLAGS.OPEN_ACTIONS, - enabledFor: [...CORE_MEMBERS, ...AAVE_MEMBERS] + enabledFor: CORE_MEMBERS } ] diff --git a/yarn.lock b/yarn.lock index eb3c83f3d..4cd1b0821 100644 --- a/yarn.lock +++ b/yarn.lock @@ -18534,9 +18534,16 @@ zod@^3.20.6, zod@^3.22.2: resolved "https://registry.yarnpkg.com/zod/-/zod-3.22.2.tgz#3add8c682b7077c05ac6f979fea6998b573e157b" integrity sha512-wvWkphh5WQsJbVk1tbx1l1Ly4yg+XecD+Mq280uBGt9wa5BKSWf4Mhp6GmrkPixhMxmabYY7RbzlwVP32pbGCg== -zustand@^4.3.1, zustand@^4.3.9, zustand@^4.4.1: +zustand@^4.3.1, zustand@^4.3.9: version "4.4.1" resolved "https://registry.yarnpkg.com/zustand/-/zustand-4.4.1.tgz#0cd3a3e4756f21811bd956418fdc686877e8b3b0" integrity sha512-QCPfstAS4EBiTQzlaGP1gmorkh/UL1Leaj2tdj+zZCZ/9bm0WS7sI2wnfD5lpOszFqWJ1DcPnGoY8RDL61uokw== dependencies: use-sync-external-store "1.2.0" + +zustand@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/zustand/-/zustand-4.4.2.tgz#e26ad331d0a2e28a7d4aa126b00c7140b34904bb" + integrity sha512-qF3/vZHCrjPUX5DvPE3DPDZlh+FiAWRKlP9PI7SlW1MCk8q4vUCDqyWsbF8K41ne0Yx8eeeb0m1cypn1LqUMYQ== + dependencies: + use-sync-external-store "1.2.0"