diff options
author | Joris | 2019-11-03 11:33:20 +0100 |
---|---|---|
committer | Joris | 2019-11-03 11:33:20 +0100 |
commit | 182f3d3fea9985c0e403087fe253981c68e57102 (patch) | |
tree | a9d394e0f31f59e1f5ac4815b05a258f012545a4 /client/src | |
parent | 9dbb4e6f7c2f0edc1126626e2ff498144c6b9947 (diff) |
Fix payment page
Diffstat (limited to 'client/src')
-rw-r--r-- | client/src/View/Payment/Payment.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/View/Payment/Payment.hs b/client/src/View/Payment/Payment.hs index f86acd8..e72577f 100644 --- a/client/src/View/Payment/Payment.hs +++ b/client/src/View/Payment/Payment.hs @@ -29,7 +29,7 @@ init :: forall t m. MonadWidget t m => m (Dynamic t (Loadable Init)) init = do users <- AjaxUtil.getNow "api/users" payments <- AjaxUtil.getNow "api/payments" - incomes <- AjaxUtil.getNow "api/incomes" + incomes <- AjaxUtil.getNow "api/deprecated/incomes" categories <- AjaxUtil.getNow "api/categories" paymentCategories <- AjaxUtil.getNow "api/paymentCategories" return $ do |