% if params[:url] %>
<% if ImageProxy.needs_proxy?(@source.image_url) %>
<%= tag.img src: image_proxy_uploads_path(url: @source.image_url), title: "Preview", id: "image" %>
<% elsif @source.image_url.present? %>
<%= tag.img src: @source.image_url, title: "Preview", id: "image", referrerpolicy: "no-referrer" %>
<% end %>
<% end %>