diff --git a/app/collection/[slug]/page.tsx b/app/collection/[slug]/page.tsx
index 274fe8241..31fd694a3 100644
--- a/app/collection/[slug]/page.tsx
+++ b/app/collection/[slug]/page.tsx
@@ -17,7 +17,7 @@ export default async function ProductPage(props: { params: Promise<{ slug: strin
{category.description}
-
+
{products.map((product) => (
))}
diff --git a/next.config.ts b/next.config.ts
index ff4177d68..0eb8f8c3f 100644
--- a/next.config.ts
+++ b/next.config.ts
@@ -13,7 +13,7 @@ const nextConfig: NextConfig = {
formats: ['image/avif', 'image/webp'],
remotePatterns: [
{
- protocol: 'http',
+ protocol: 'https',
hostname: '**'
}
]