🐛 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
(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)