diff --git a/src/status_im2/contexts/chat/composer/utils.cljs b/src/status_im2/contexts/chat/composer/utils.cljs index 8300cbd5f9..70fb0a052b 100644 --- a/src/status_im2/contexts/chat/composer/utils.cljs +++ b/src/status_im2/contexts/chat/composer/utils.cljs @@ -62,8 +62,7 @@ (defn calc-lines [height] - (let [lines (Math/round (/ height constants/line-height))] - (if platform/ios? lines (dec lines)))) + (Math/floor (/ height constants/line-height))) (defn calc-extra-content-height [images? link-previews? reply? edit?]