We've been using Turbo Streams in some of our recent prototypes, which makes it really easy and fun to get responsive and fun interactions set up. However, we kept having issues with images sent in a turbo stream response. If the response was delivered by a normal controller render, e.g. class ThingController < ApplicationController def update @thing = Thing.find(params[:id]) if @thing.update(thing_params) respond_to do |format| format.turbo_stream # renders `update.turbo_stream.erb` end end ...