There's an issue with the Elm compiler documented here that results in the error message:
Map.!: given key is not an element in the map
Though it is not resolved, there are a few things you can do to get around it for now:
Array
in a custom type (use List
instead)elm-stuff
and recompile--debug
flagUsing Array
in a custom type was what led me to the error, and substituting for List
made it go away.
Looking forward to updating this post when the issue is resolved!