Skip to content

Commit a5ac96b

Browse files
committed
Fix keyword typo
1 parent 99ce1dc commit a5ac96b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/status_im/ui/screens/profile/visibility_status/styles.cljs

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@
1515
:padding-right 12})
1616

1717
(defn visibility-status-dot
18-
[{:keys [dot-color size new-ui?]}]
18+
[{:keys [color size new-ui?]}]
1919
(if new-ui?
20-
{:background-color dot-color
20+
{:background-color color
2121
:width size
2222
:height size
2323
:border-radius (/ size 2)
2424
:border-width 3.5
2525
:border-color (quo2.colors/theme-colors quo2.colors/white quo2.colors/neutral-90)}
26-
{:background-color dot-color
26+
{:background-color color
2727
:width size
2828
:height size
2929
:border-radius (/ size 2)

src/status_im/ui/screens/profile/visibility_status/utils.cljs

+3-3
Original file line numberDiff line numberDiff line change
@@ -121,9 +121,9 @@
121121
margin (icon-dot-margin size identicon?)
122122
dot-color (icon-dot-color visibility-status-update)
123123
new-ui? @config/new-ui-enabled?]
124-
(merge (styles/visibility-status-dot {:dot-color dot-color
125-
:size size
126-
:new-ui? new-ui?})
124+
(merge (styles/visibility-status-dot {:color dot-color
125+
:size size
126+
:new-ui? new-ui?})
127127
{:bottom margin
128128
:right margin
129129
:position :absolute

0 commit comments

Comments
 (0)