File tree 3 files changed +5
-9
lines changed
legacy/status_im/multiaccounts/logout
quo/components/navigation/bottom_nav_tab
status_im/contexts/shell/jump_to
3 files changed +5
-9
lines changed Original file line number Diff line number Diff line change 31
31
(let [key-uid (get-in db [:profile/profile :key-uid ])]
32
32
(rf/merge cofx
33
33
{:set-root :progress
34
- :chat.ui/clear-inputs nil
35
34
:effects.shell/reset-state nil
36
35
:hide-popover nil
37
36
::logout nil
Original file line number Diff line number Diff line change 32
32
"
33
33
[{:keys [icon new-notifications? notification-indicator counter-label
34
34
on-press pass-through? icon-color-anim accessibility-label test-ID
35
- customization-color on-long-press ]
35
+ customization-color]
36
36
:or {customization-color :blue }}]
37
37
(let [icon-animated-style (reanimated/apply-animations-to-style
38
38
{:tint-color icon-color-anim}
48
48
:border-radius 10 })]
49
49
[rn/touchable-without-feedback
50
50
{:test-ID test-ID
51
- :on-long-press on-long-press ; ;NOTE - this is temporary while supporting old wallet
52
51
:allow-multiple-presses? true
53
52
:on-press on-press
54
53
:on-press-in #(toggle-background-color background-color false pass-through?)
Original file line number Diff line number Diff line change 15
15
16
16
(defn navigate-back-handler
17
17
[]
18
- (if (and (not @navigation.state/curr-modal)
19
- (seq (utils/open-floating-screens )))
20
- (do
21
- (rf/dispatch [:navigate-back ])
22
- true )
23
- false ))
18
+ (when (and (not @navigation.state/curr-modal)
19
+ (seq (utils/open-floating-screens )))
20
+ (rf/dispatch [:navigate-back ])
21
+ true ))
24
22
25
23
(defn floating-button
26
24
[shared-values]
You can’t perform that action at this time.
0 commit comments