Remove debug

experiment/tanstack-table
Tienson Qin 2024-06-25 22:42:53 +08:00
parent 9b259a8291
commit 2cdfaa7fdf
1 changed files with 0 additions and 2 deletions

View File

@ -53,8 +53,6 @@
(defn rows
[{:keys [rows columns sorting row-filter]}]
(prn :debug :rows rows
:row-filter row-filter)
(let [rows' (if row-filter (filter row-filter rows) rows)]
(cond-> rows'
(seq sorting) (sort-rows sorting columns))))