fixing bug in master

This commit is contained in:
Bryce Covert
2019-04-11 19:48:02 -07:00
parent 4e72c00895
commit 27e9456891
2 changed files with 9 additions and 2 deletions

View File

@@ -28,6 +28,13 @@
[]
clients))))
(re-frame/reg-sub
::real-bank-accounts
:<- [::client]
(fn [client]
(->> client :bank-accounts (filter #(= (:type %) :check)) (sort-by :sort-order))))
(re-frame/reg-sub
::clients-by-id
(fn [db]