From 3829443046fc016c57330dbc7e734fad25e9b140 Mon Sep 17 00:00:00 2001 From: Juanfran Date: Wed, 15 Apr 2026 14:59:40 +0200 Subject: [PATCH] :bug: Skip onboarding modal for nitrate entry users --- frontend/src/app/main/ui/dashboard.cljs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/frontend/src/app/main/ui/dashboard.cljs b/frontend/src/app/main/ui/dashboard.cljs index f28068a27b..4440cacc21 100644 --- a/frontend/src/app/main/ui/dashboard.cljs +++ b/frontend/src/app/main/ui/dashboard.cljs @@ -16,6 +16,7 @@ [app.main.data.nitrate :as dnt] [app.main.data.notifications :as notif] [app.main.data.plugins :as dp] + [app.main.data.profile :as dprof] [app.main.data.project :as dpj] [app.main.refs :as refs] [app.main.router :as rt] @@ -268,7 +269,8 @@ (mf/with-effect [] (when (dnt/nitrate-entry-popup-pending?) (dnt/consume-nitrate-entry-popup!) - (st/emit! (dnt/show-nitrate-popup :nitrate-form))))) + (st/emit! (dprof/update-profile-props {:onboarding-viewed true}) + (dnt/show-nitrate-popup :nitrate-form))))) (mf/defc dashboard* [{:keys [profile project-id team-id search-term plugin-url template section]}]