Keep your stimulus controller as is, but when you fetch the authors, return the turbo streams for updating.
so something like
https://github.com/hotwired/turbo-rails/issues/77
and then in your `fetch()` call do:
```
const resp = await fetch("/authors")
const html = resp.text()
Turbo.renderStreamMessage(html)
```
And thatll apply your turbo streams to the page, not need the turbo frame, and removes any manual DOM manipulation you're currently doing. It kinda just cuts out the turbo-frame