From a08f052da00e7f2c8c7c9f0611b55ee577f6bc6c Mon Sep 17 00:00:00 2001 From: Dexterity <173429049+Dexterity104@users.noreply.github.com> Date: Wed, 6 May 2026 19:43:15 -0400 Subject: [PATCH] :bug: Remove stray println debug logs from dashboard team invitations (#9365) --- frontend/src/app/main/ui/dashboard/team.cljs | 2 -- 1 file changed, 2 deletions(-) diff --git a/frontend/src/app/main/ui/dashboard/team.cljs b/frontend/src/app/main/ui/dashboard/team.cljs index 3425c5cb4c..be0a257ac3 100644 --- a/frontend/src/app/main/ui/dashboard/team.cljs +++ b/frontend/src/app/main/ui/dashboard/team.cljs @@ -927,7 +927,6 @@ on-error (fn [form] (let [{:keys [type code] :as error} (ex-data form)] - (println form) (cond (and (= :validation type) (= :profile-is-muted code)) @@ -989,7 +988,6 @@ new-direction (if (= current-field :status) (if (= current-direction :asc) :desc :asc) :asc)] - (println @invitations) (swap! sort-state assoc :field :status :direction new-direction) (swap! invitations #(let [sorted (sort-by (juxt :expired :email) %)] (if (= new-direction :desc)