diff --git a/src/status_im/chat/styles/message/message.cljs b/src/status_im/chat/styles/message/message.cljs index 227680d0ab..b8656e5a6e 100644 --- a/src/status_im/chat/styles/message/message.cljs +++ b/src/status_im/chat/styles/message/message.cljs @@ -83,9 +83,8 @@ {:width 36 :alignSelf :flex-start}) -(def photo-view {:borderRadius 12}) (def photo - {:borderRadius 12 + {:borderRadius 18 :width 36 :height 36}) diff --git a/src/status_im/chat/views/message/message.cljs b/src/status_im/chat/views/message/message.cljs index d689be1782..f5ea1f46dd 100644 --- a/src/status_im/chat/views/message/message.cljs +++ b/src/status_im/chat/views/message/message.cljs @@ -317,7 +317,7 @@ (defview member-photo [from] [photo-path [:photo-path from]] - [view st/photo-view + [view [image {:source {:uri (if (str/blank? photo-path) (identicon from) photo-path)} @@ -326,7 +326,7 @@ (defview my-photo [from] [account [:get-current-account]] (let [{:keys [photo-path]} account] - [view st/photo-view + [view [image {:source {:uri (if (str/blank? photo-path) (identicon from) photo-path)}