From 1bc7eade968fdcaa749e33a3ff32011d08125bcb Mon Sep 17 00:00:00 2001
From: Henrik Larsson <hankisch@gmail.com>
Date: Tue, 15 Aug 2023 21:12:58 +0200
Subject: [PATCH 1/3] Update page.tsx

---
 app/(site)/[locale]/page.tsx | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/app/(site)/[locale]/page.tsx b/app/(site)/[locale]/page.tsx
index 494659740..7eda94c08 100644
--- a/app/(site)/[locale]/page.tsx
+++ b/app/(site)/[locale]/page.tsx
@@ -45,5 +45,7 @@ export default async function IndexPage({ params }: HomePageParams) {
     );
   }
 
-  return <HomePage data={data} />;
+  return (
+    <HomePage data={data} />
+  );
 }

From 22fbd1fb7f330b7bf0208c15be5215e2e2f5a405 Mon Sep 17 00:00:00 2001
From: Henrik Larsson <hankisch@gmail.com>
Date: Tue, 15 Aug 2023 21:14:51 +0200
Subject: [PATCH 2/3] Update home-page.tsx

---
 components/pages/home-page.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/pages/home-page.tsx b/components/pages/home-page.tsx
index 35c5f4f21..08407fae1 100644
--- a/components/pages/home-page.tsx
+++ b/components/pages/home-page.tsx
@@ -7,7 +7,7 @@ interface IndexPageParams {
 export default function HomePage({ data }: IndexPageParams) {
   return (
     <>
-      <DynamicContentManager content={data?.content} />;
+      <DynamicContentManager content={data?.content} />
     </>
   );
 }

From 10ce61ab2b58309238c9208fcdfab15839ec7a86 Mon Sep 17 00:00:00 2001
From: Henrik Larsson <hankisch@gmail.com>
Date: Tue, 15 Aug 2023 21:15:53 +0200
Subject: [PATCH 3/3] Update product-page.tsx

---
 components/pages/product-page.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/pages/product-page.tsx b/components/pages/product-page.tsx
index c844c7bba..54a060aad 100644
--- a/components/pages/product-page.tsx
+++ b/components/pages/product-page.tsx
@@ -22,7 +22,7 @@ export default function ProductPage({ data }: ProductPageParams) {
           __html: JSON.stringify(productJsonLd)
         }}
       />
-      <ProductView product={product} relatedProducts={[]} />;
+      <ProductView product={product} relatedProducts={[]} />
     </>
   );
 }