I\'ve used Phoenix\'s built in gen.HTML to generate a simple view but it\'s not working
<%= link \"Delete\", to: event_path(@conn, :delete, event), method
For anyone else hitting this I had a completely different problem that manifested itself in the same way, will drop this here in case it helps:
It turns out I accidentally deleted import "phoenix_html"
from the app.js file mistaking it for being part of the generated boilerplate, adding it back fixed my issue.