diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/client/Update/LoggedIn.elm | 2 | ||||
-rw-r--r-- | src/client/Utils/List.elm | 6 |
2 files changed, 0 insertions, 8 deletions
diff --git a/src/client/Update/LoggedIn.elm b/src/client/Update/LoggedIn.elm index e200b04..e477094 100644 --- a/src/client/Update/LoggedIn.elm +++ b/src/client/Update/LoggedIn.elm @@ -16,8 +16,6 @@ import Update.LoggedIn.Add exposing (..) import Update.LoggedIn.Monthly as UM import Update.LoggedIn.Account as UA -import Utils.List exposing (find) - type LoggedAction = UpdateAdd AddPaymentAction | UpdatePayments Payments diff --git a/src/client/Utils/List.elm b/src/client/Utils/List.elm deleted file mode 100644 index f33e124..0000000 --- a/src/client/Utils/List.elm +++ /dev/null @@ -1,6 +0,0 @@ -module Utils.List - ( find - ) where - -find : (a -> Bool) -> List a -> Maybe a -find predicate = List.head << List.filter predicate |