Skip to content

Commit

Permalink
Set Activity Center as the new default (#14492)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilmotta authored and cammellos committed Dec 12, 2022
1 parent 22f0b57 commit a008e82
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion src/quo2/components/notifications/activity_log/view.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@
(map (fn [s]
[rn/view {:style {:margin-right 4
:margin-top 0}}
[text/text {:size :paragraph-2}
[text/text {:size :paragraph-2
:style {:color colors/white}}
s]])
(string/split detail #"\s+"))
[[rn/view {:margin-right 4
Expand Down
2 changes: 1 addition & 1 deletion src/quo2/components/tabs/tabs.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@
:on-press (fn [id]
(reset! active-tab-id id)
(when scroll-on-press?
(.scrollToIndex @flat-list-ref
(.scrollToIndex ^js @flat-list-ref
#js {:animated true
:index index
:viewPosition 0.5}))
Expand Down
13 changes: 7 additions & 6 deletions src/status_im/ui/screens/activity_center/views.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,13 @@
[]
(let [screen-padding 20]
[rn/view
[quo2/button {:icon true
:type :blur-bg
:size 32
:override-theme :dark
:style style/header-button
:on-press #(rf/dispatch [:hide-popover])}
[quo2/button {:icon true
:type :blur-bg
:size 32
:accessibility-label :close-activity-center
:override-theme :dark
:style style/header-button
:on-press #(rf/dispatch [:hide-popover])}
:i/close]
[quo2/text {:size :heading-1
:weight :semi-bold
Expand Down
2 changes: 1 addition & 1 deletion src/status_im2/setup/config.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,4 @@

;; TODO: Remove this (highly) temporary flag once the new Activity Center is
;; usable enough to replace the old one **in the new UI**.
(def new-activity-center-enabled? false)
(def new-activity-center-enabled? true)

0 comments on commit a008e82

Please sign in to comment.