diff --git a/src/quo/components/community/style.cljs b/src/quo/components/community/style.cljs index ec94ff9d9fa..abc906fd864 100644 --- a/src/quo/components/community/style.cljs +++ b/src/quo/components/community/style.cljs @@ -130,7 +130,7 @@ (defn loading-content-container [theme] {:position :absolute - :heigth 190 + :height 190 :top 40 :bottom 0 :left 0 diff --git a/src/status_im/contexts/wallet/common/utils.cljs b/src/status_im/contexts/wallet/common/utils.cljs index f42dc8e880d..a8e7cbc23b7 100644 --- a/src/status_im/contexts/wallet/common/utils.cljs +++ b/src/status_im/contexts/wallet/common/utils.cljs @@ -266,7 +266,7 @@ :else (prettify-balance currency-symbol fiat-value))) (defn prettify-percentage-change - "Returns unsigned precentage" + "Returns unsigned percentage" [percentage] (-> (if (number? percentage) percentage 0) money/bignumber diff --git a/src/status_im/subs/messages.cljs b/src/status_im/subs/messages.cljs index f2e2b4f7594..432e9396a3b 100644 --- a/src/status_im/subs/messages.cljs +++ b/src/status_im/subs/messages.cljs @@ -11,7 +11,7 @@ It makes best effort to group them by day. We cannot sort them by :timestamp, as that represents the clock of the sender and we have no guarantees on the order. - We naively and arbitrarly group them assuming that out-of-order timestamps + We naively and arbitrarily group them assuming that out-of-order timestamps fall in the previous bucket. A sends M1 to B with timestamp 2000-01-01T00:00:00 B replies M2 with timestamp 1999-12-31-23:59:59 diff --git a/src/status_im/subs/messages_test.cljs b/src/status_im/subs/messages_test.cljs index 5ed81f39690..5365f6570fa 100644 --- a/src/status_im/subs/messages_test.cljs +++ b/src/status_im/subs/messages_test.cljs @@ -32,7 +32,7 @@ (is (= (messages/albumize-messages messages-state) messages-albumized-state)))) (deftest intersperse-datemarks-test - (testing "it mantains the order even when timestamps are across days" + (testing "it maintains the order even when timestamps are across days" (let [message-1 {:datemark "Dec 31, 1999" :whisper-timestamp 946641600000} ; 1999} message-2 {:datemark "Jan 1, 2000"