Skip to content

Commit

Permalink
fix issue 1
Browse files Browse the repository at this point in the history
  • Loading branch information
Parveshdhull committed May 24, 2024
1 parent beee683 commit 6e45c9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/status_im/navigation/effects.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
(defn- navigate
[[component theme animations]]
(let [{:keys [options]} (get views/screens component)
options (if animations (assoc options :animations animations) options)]
options (if (map? animations) (assoc options :animations animations) options)]
(dismiss-all-modals)
(navigation/push
(name @state/root-id)
Expand Down

0 comments on commit 6e45c9a

Please sign in to comment.