I’m currently working on integrating Turbo/Hotwire into Rails 7. I’ve successfully enabled users to make inline edits on the page without needing to refresh, which is a great feature. However, I’ve observed that the response sent back contains the entire HTML content of the page. Given the large size of my page with numerous additional tabs, I’m worried about the browser potentially struggling to handle so much HTML. Utilizing turbo_stream.update to selectively update a specific partial related to the edited attribute seems like a more efficient approach. What’s the conventional method for handling this situation?