diff options
Diffstat (limited to 'src/client/Main.elm')
-rw-r--r-- | src/client/Main.elm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/Main.elm b/src/client/Main.elm index 519360a..678d20e 100644 --- a/src/client/Main.elm +++ b/src/client/Main.elm @@ -46,10 +46,10 @@ port fetchPayments = |> flip Task.onError reportError reportSuccess : Payments -> Task x () -reportSuccess payments = Signal.send actions.address (UpdatePayments payments) +reportSuccess payments = Signal.send actions.address (GoPaymentView payments) reportError : Http.Error -> Task x () -reportError error = Signal.send actions.address SignIn +reportError error = Signal.send actions.address GoSignInView getPayments : Task Http.Error Payments getPayments = Http.get paymentsDecoder "/payments" |