···11+module UI.Sources.Page exposing (Page(..))
22+33+-- 🌳
44+55+66+type Page
77+ = Index
88+ | New
+2
src/Applications/UI/UserData.elm
···3838importHypaethral : Json.Value -> UI.Core.Model -> R3D3 UI.Core.Model UI.Core.Msg UI.Reply
3939importHypaethral value model =
4040 let
4141+ -- TODO: The app should notify the user if it's trying to import faulty data.
4242+ -- (instead of doing nothing, like it is now)
4143 data =
4244 Result.withDefault emptyHypaethralUserData (decode value)
4345