diff --git a/src/status_im/contexts/profile/create/events.cljs b/src/status_im/contexts/profile/create/events.cljs index 50c8b7db7b..f3b4062e59 100644 --- a/src/status_im/contexts/profile/create/events.cljs +++ b/src/status_im/contexts/profile/create/events.cljs @@ -1,7 +1,6 @@ (ns status-im.contexts.profile.create.events (:require [native-module.core :as native-module] - [status-im.common.emoji-picker.utils :as emoji-picker.utils] [status-im.contexts.profile.config :as profile.config] status-im.contexts.profile.create.effects [utils.re-frame :as rf] @@ -17,5 +16,4 @@ :displayName display-name :password login-sha3-password :imagePath (profile.config/strip-file-prefix image-path) - :customizationColor color - :emoji (emoji-picker.utils/random-emoji))})) + :customizationColor color)})) diff --git a/src/status_im/contexts/profile/recover/events.cljs b/src/status_im/contexts/profile/recover/events.cljs index 045b4679ef..850fc01cf5 100644 --- a/src/status_im/contexts/profile/recover/events.cljs +++ b/src/status_im/contexts/profile/recover/events.cljs @@ -1,7 +1,6 @@ (ns status-im.contexts.profile.recover.events (:require [native-module.core :as native-module] - [status-im.common.emoji-picker.utils :as emoji-picker.utils] [status-im.contexts.profile.config :as profile.config] status-im.contexts.profile.recover.effects [utils.re-frame :as rf] @@ -23,5 +22,4 @@ :password login-sha3-password :imagePath (profile.config/strip-file-prefix image-path) :customizationColor color - :emoji (emoji-picker.utils/random-emoji) :fetchBackup true})}))