diff --git a/src/status_im/translations/en.cljs b/src/status_im/translations/en.cljs index 500bf80de2..4071875e39 100644 --- a/src/status_im/translations/en.cljs +++ b/src/status_im/translations/en.cljs @@ -231,7 +231,7 @@ :start-new-chat "Start new chat" :start-group-chat "Start group chat" :invite-friends "Invite friends" - :get-status-at "Get Status at http://status.im?refCode={{address}}" + :get-status-at "Get Status at http://status.im" :chats "Chats" :delete-chat "Delete chat" :group-chat "Group chat" diff --git a/src/status_im/ui/screens/add_new/views.cljs b/src/status_im/ui/screens/add_new/views.cljs index 5c6f8b17d5..2307f36abf 100644 --- a/src/status_im/ui/screens/add_new/views.cljs +++ b/src/status_im/ui/screens/add_new/views.cljs @@ -14,7 +14,7 @@ [status-im.utils.config :as config] [status-im.utils.mixpanel :as mixpanel])) -(defn- options-list [{:keys [address anon-id]}] +(defn- options-list [{:keys [anon-id]}] [react/view action-button.styles/actions-list [action-button/action-button {:label (i18n/label :t/start-new-chat) @@ -52,7 +52,7 @@ :icon :icons/share :icon-opts {:color colors/blue} :on-press #(do (mixpanel/track anon-id "Tap" {:target :invite-friends} false) - (list-selection/open-share {:message (i18n/label :t/get-status-at {:address address})}))}]]) + (list-selection/open-share {:message (i18n/label :t/get-status-at)}))}]]) (views/defview add-new [] (views/letsubs [account [:get-current-account]