diff --git a/app/views/weather_arts/show.html.erb b/app/views/weather_arts/show.html.erb
index ba9d2b0..051713c 100644
--- a/app/views/weather_arts/show.html.erb
+++ b/app/views/weather_arts/show.html.erb
@@ -29,15 +29,15 @@
<% blob = @weather_art.image_blob %>
- <%= link_to rails_blob_path(blob.variant(resize_to_fit: [896, 512])),
+ <%= link_to rails_blob_path(blob),
data: {
pswp_src: rails_blob_url(blob),
pswp_caption: 'Weather Art',
pswp_width: 1792,
pswp_height: 1024
} do %>
- <%= image_tag @weather_art.image.variant(resize_to_fill: [896, 512]),
- class: "object-cover w-full h-full transition-transform scale-95 transform hover:scale-105 ease-in-out" %>
+ <%= image_tag @weather_art.image,
+ class: "object-cover w-full h-full transition-transform transform hover:scale-105 ease-in-out" %>
<% end %>