Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/quo/components/community/style.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
(defn loading-content-container
[theme]
{:position :absolute
:heigth 190
:height 190
:top 40
:bottom 0
:left 0
Expand Down
2 changes: 1 addition & 1 deletion src/status_im/contexts/wallet/common/utils.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/status_im/subs/messages.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/status_im/subs/messages_test.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down