aboutsummaryrefslogtreecommitdiff
path: root/src/client/elm/LoggedIn/View.elm
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/elm/LoggedIn/View.elm')
-rw-r--r--src/client/elm/LoggedIn/View.elm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/elm/LoggedIn/View.elm b/src/client/elm/LoggedIn/View.elm
index 8561d2c..25624ce 100644
--- a/src/client/elm/LoggedIn/View.elm
+++ b/src/client/elm/LoggedIn/View.elm
@@ -10,12 +10,12 @@ import Html.Attributes exposing (..)
import LoggedIn.Model as LoggedInModel
import LoggedIn.Account.View as AccountView
import LoggedIn.AddPayment.View as AddPaymentView
+import LoggedIn.Monthly.View as MonthlyView
import Model exposing (Model)
import Model.Payment exposing (Payments)
import Model.Action exposing (Action)
-import View.LoggedIn.Monthly exposing (monthlyPayments)
import View.LoggedIn.Table exposing (paymentsTable)
import View.LoggedIn.Paging exposing (paymentsPaging)
@@ -27,7 +27,7 @@ view address model loggedInModel =
, div
[ class "expandables" ]
[ AccountView.view address model loggedInModel
- , monthlyPayments address model loggedInModel
+ , MonthlyView.view address model loggedInModel
]
, paymentsTable address model loggedInModel
, paymentsPaging address loggedInModel