diff --git a/native/chat/settings/add-users-modal.react.js b/native/chat/settings/add-users-modal.react.js --- a/native/chat/settings/add-users-modal.react.js +++ b/native/chat/settings/add-users-modal.react.js @@ -8,6 +8,7 @@ changeThreadSettingsActionTypes, changeThreadSettings, } from 'lib/actions/thread-actions'; +import { useENSNames } from 'lib/hooks/ens-cache'; import { createLoadingStatusSelector } from 'lib/selectors/loading-selectors'; import { threadInfoSelector } from 'lib/selectors/thread-selectors'; import { @@ -234,10 +235,12 @@ }), [onPressAdd], ); + const userSearchResultWithENSNames = useENSNames(userSearchResults); + const userInfoInputArrayWithENSNames = useENSNames(userInfoInputArray); return ( - + {cancelButton} {addButton}