From 3527ffdc4dad45bd56d64ca1b59b108ed3c03956 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=ADa=20Valderrama?= Date: Fri, 22 May 2026 09:29:06 +0200 Subject: [PATCH] :bug: Fix navigation to admin console --- frontend/src/app/main/ui/dashboard/sidebar.cljs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/dashboard/sidebar.cljs b/frontend/src/app/main/ui/dashboard/sidebar.cljs index 9fc83af078..72a42e2c33 100644 --- a/frontend/src/app/main/ui/dashboard/sidebar.cljs +++ b/frontend/src/app/main/ui/dashboard/sidebar.cljs @@ -325,7 +325,8 @@ ;; Navigate to active org if user owns it, otherwise to last visited org (if (and (:id organization) (= (:id profile) (:owner-id organization))) - (dnt/go-to-nitrate-ac organization) + (dnt/go-to-nitrate-ac {:organization-id (:id organization) + :organization-slug (:slug organization)}) (dnt/go-to-nitrate-ac)))) empty-org (d/seek #(nil? (:id %)) organizations)