app/views/application/_flashes.html.haml
%turbo-frame#flashes
.container.is-hidden{data: {controller: 'message', message_force: defined?(force) ? force : false, message_status: flash.now[:error].present? ? 'error' : 'success'}}
- if flash.now[:error].present?
%span{data: {message_target: 'text'}}= flash.now[:error]
- elsif flash.now[:success].present?
%span{data: {message_target: 'text'}}= flash.now[:success]