<% unless flash.empty? %> <% if flash.alert.present? && flash.alert.is_a?(Hash) %> <% title = flash.alert&.dig(:title) || flash.alert&.dig("title") %> <% description = flash.alert&.dig(:description) || flash.alert&.dig("description") %> <% elsif flash.notice.present? && flash.notice.is_a?(Hash) %> <% title = flash.notice&.dig(:title) || flash.notice&.dig("title") %> <% description = flash.notice&.dig(:description) || flash.notice&.dig("description") %> <% else %> <% title = "AplicaciĆ³n" %> <% description = flash.notice || flash.alert %> <% end %>
<% end %>