diff --git a/app/page.tsx b/app/page.tsx
index 000eb7be8..338440792 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -15,7 +15,7 @@ export default function HomePage() {
<>
-
+ {/* */}
>
)
}
diff --git a/app/product/[handle]/page.tsx b/app/product/[handle]/page.tsx
index 8b826dcea..fe3fece3a 100644
--- a/app/product/[handle]/page.tsx
+++ b/app/product/[handle]/page.tsx
@@ -107,7 +107,7 @@ export default async function ProductPage(props: {
-
+ {/* */}
)
}
diff --git a/app/search/layout.tsx b/app/search/layout.tsx
index ed92804a2..0c3ddbc5e 100644
--- a/app/search/layout.tsx
+++ b/app/search/layout.tsx
@@ -1,14 +1,14 @@
-import Footer from 'components/layout/footer';
-import Collections from 'components/layout/search/collections';
-import FilterList from 'components/layout/search/filter';
-import { sorting } from 'lib/constants';
-import ChildrenWrapper from './children-wrapper';
-import { Suspense } from 'react';
+import Footer from 'components/layout/footer'
+import Collections from 'components/layout/search/collections'
+import FilterList from 'components/layout/search/filter'
+import { sorting } from 'lib/constants'
+import ChildrenWrapper from './children-wrapper'
+import { Suspense } from 'react'
export default function SearchLayout({
- children
+ children,
}: {
- children: React.ReactNode;
+ children: React.ReactNode
}) {
return (
<>
@@ -25,7 +25,7 @@ export default function SearchLayout({
-
+ {/* */}
>
- );
+ )
}