This code produces a Mint runtime bundle that immediately crashes & fails to render anything: ```mint component Main { state message : Maybe(String) = Maybe.nothing() fun render : Html { "Hello world!" |> Maybe.just |> ->message <div>message |> Maybe.withDefault("")</div> } } ``` Sandbox: https://mint-lang.com/sandbox/BdCv2RuEQ9GCRg