Just a quick Hotwire Native/Turbo tip: use Turbo.visit(url) for navigation not window.location = url.
Turbo.visit(url)
window.location = url
Turbo.visit makes sure frames are respected etc and avoids Hotwire Native opening the address in a modal popup.
Turbo.visit