Skip to content

Commit

Permalink
cleanup leftovers (#18907)
Browse files Browse the repository at this point in the history
  • Loading branch information
Parveshdhull authored Feb 20, 2024
1 parent 5a7bfc6 commit 424bbc3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
1 change: 0 additions & 1 deletion src/legacy/status_im/multiaccounts/logout/core.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
(let [key-uid (get-in db [:profile/profile :key-uid])]
(rf/merge cofx
{:set-root :progress
:chat.ui/clear-inputs nil
:effects.shell/reset-state nil
:hide-popover nil
::logout nil
Expand Down
3 changes: 1 addition & 2 deletions src/quo/components/navigation/bottom_nav_tab/view.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"
[{:keys [icon new-notifications? notification-indicator counter-label
on-press pass-through? icon-color-anim accessibility-label test-ID
customization-color on-long-press]
customization-color]
:or {customization-color :blue}}]
(let [icon-animated-style (reanimated/apply-animations-to-style
{:tint-color icon-color-anim}
Expand All @@ -48,7 +48,6 @@
:border-radius 10})]
[rn/touchable-without-feedback
{:test-ID test-ID
:on-long-press on-long-press ;;NOTE - this is temporary while supporting old wallet
:allow-multiple-presses? true
:on-press on-press
:on-press-in #(toggle-background-color background-color false pass-through?)
Expand Down
10 changes: 4 additions & 6 deletions src/status_im/contexts/shell/jump_to/view.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,10 @@

(defn navigate-back-handler
[]
(if (and (not @navigation.state/curr-modal)
(seq (utils/open-floating-screens)))
(do
(rf/dispatch [:navigate-back])
true)
false))
(when (and (not @navigation.state/curr-modal)
(seq (utils/open-floating-screens)))
(rf/dispatch [:navigate-back])
true))

(defn floating-button
[shared-values]
Expand Down

0 comments on commit 424bbc3

Please sign in to comment.