🐛 Remove stray println debug logs from dashboard team invitations (#9365)

This commit is contained in:
Dexterity 2026-05-06 19:43:15 -04:00 committed by GitHub
parent f173fafb62
commit 61b791368a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -927,7 +927,6 @@
on-error on-error
(fn [form] (fn [form]
(let [{:keys [type code] :as error} (ex-data form)] (let [{:keys [type code] :as error} (ex-data form)]
(println form)
(cond (cond
(and (= :validation type) (and (= :validation type)
(= :profile-is-muted code)) (= :profile-is-muted code))
@ -989,7 +988,6 @@
new-direction (if (= current-field :status) new-direction (if (= current-field :status)
(if (= current-direction :asc) :desc :asc) (if (= current-direction :asc) :desc :asc)
:asc)] :asc)]
(println @invitations)
(swap! sort-state assoc :field :status :direction new-direction) (swap! sort-state assoc :field :status :direction new-direction)
(swap! invitations #(let [sorted (sort-by (juxt :expired :email) %)] (swap! invitations #(let [sorted (sort-by (juxt :expired :email) %)]
(if (= new-direction :desc) (if (= new-direction :desc)