summaryrefslogtreecommitdiff
path: root/src-migrate/modules/product-detail
diff options
context:
space:
mode:
Diffstat (limited to 'src-migrate/modules/product-detail')
-rw-r--r--src-migrate/modules/product-detail/components/Image.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-migrate/modules/product-detail/components/Image.tsx b/src-migrate/modules/product-detail/components/Image.tsx
index fffe1480..b69cc87f 100644
--- a/src-migrate/modules/product-detail/components/Image.tsx
+++ b/src-migrate/modules/product-detail/components/Image.tsx
@@ -36,7 +36,7 @@ const Image = ({ product }: Props) => {
const duration = moment.duration(count, 'seconds')
const image = useMemo(() => {
- if (product.image) return product.image + '?watermark=true'
+ if (product.image) return product.image + '?ratio=square'
return '/images/noimage.jpeg'
}, [product.image])