diff --git a/packages/plugin-infra/src/web3/useSocialAddressListAll.ts b/packages/plugin-infra/src/web3/useSocialAddressListAll.ts index bc12905b8b3b..bbe342eaf328 100644 --- a/packages/plugin-infra/src/web3/useSocialAddressListAll.ts +++ b/packages/plugin-infra/src/web3/useSocialAddressListAll.ts @@ -23,5 +23,5 @@ export function useSocialAddressListAll( ) const listOfAddress = allSettled.flatMap((x) => (x.status === 'fulfilled' ? x.value : [])) return sorter && listOfAddress.length ? listOfAddress.sort(sorter) : listOfAddress - }, [identity?.identifier?.userId, sorter, EVM_IdentityService?.lookup, SolanaIdentityService?.lookup]) + }, [identity, sorter, EVM_IdentityService?.lookup, SolanaIdentityService?.lookup]) }