aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/Model/Init.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/elm/Model/Init.elm')
-rw-r--r--src/client/elm/Model/Init.elm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/elm/Model/Init.elm b/src/client/elm/Model/Init.elm
index 490321b..d9dbc36 100644
--- a/src/client/elm/Model/Init.elm
+++ b/src/client/elm/Model/Init.elm
@@ -3,7 +3,7 @@ module Model.Init
) where
import Model.Payment exposing (Payments)
-import Model.Payer exposing (Payers)
+import Model.Income exposing (Incomes)
import Model.User exposing (Users, UserId)
type alias Init =
@@ -12,5 +12,5 @@ type alias Init =
, payments : Payments
, monthlyPayments : Payments
, paymentsCount : Int
- , payers : Payers
+ , incomes : Incomes
}