From 495bc9198979e95e7f1f46ab956751f9fb4042d0 Mon Sep 17 00:00:00 2001 From: Sean Hagstrom Date: Tue, 26 Mar 2024 15:04:49 +0000 Subject: [PATCH] fix: re-route a user's own profile link to their settings page (#19389) --- src/status_im/common/universal_links.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/common/universal_links.cljs b/src/status_im/common/universal_links.cljs index d01d0a5362..425eee08f2 100644 --- a/src/status_im/common/universal_links.cljs +++ b/src/status_im/common/universal_links.cljs @@ -75,7 +75,7 @@ (and public-key (own-public-key? db public-key)) (rf/merge cofx {:pop-to-root-fx :shell-stack} - (navigation/navigate-to :my-profile nil)) + (navigation/navigate-to :settings nil)) public-key {:dispatch [:chat.ui/show-profile public-key ens-name]}))