diff --git a/app/search/layout.tsx b/app/search/layout.tsx index 189ca10aa..24d1480d3 100644 --- a/app/search/layout.tsx +++ b/app/search/layout.tsx @@ -7,12 +7,12 @@ import { Suspense } from 'react'; export default function SearchLayout({ children }: { children: React.ReactNode }) { return ( -
-
+
+
{children}
-
+
diff --git a/components/grid/index.tsx b/components/grid/index.tsx index 2af9a9767..92681555a 100644 --- a/components/grid/index.tsx +++ b/components/grid/index.tsx @@ -2,7 +2,7 @@ import clsx from 'clsx'; function Grid(props: React.ComponentProps<'ul'>) { return ( -
    +
      {props.children}
    ); diff --git a/components/grid/three-items.tsx b/components/grid/three-items.tsx index 04b73e8c2..3afc98707 100644 --- a/components/grid/three-items.tsx +++ b/components/grid/three-items.tsx @@ -8,7 +8,7 @@ function ThreeItemGridItem({ item, size }: { item: Product; size: 'full' | 'half
    - + +
    diff --git a/components/layout/search/filter/index.tsx b/components/layout/search/filter/index.tsx index 054994fc6..ac5002d68 100644 --- a/components/layout/search/filter/index.tsx +++ b/components/layout/search/filter/index.tsx @@ -7,18 +7,18 @@ export type PathFilterItem = { title: string; path: string }; function FilterItemList({ list }: { list: ListItem[] }) { return ( -
    + <> {list.map((item: ListItem, i) => ( ))} -
    + ); } export default function FilterList({ list, title }: { list: ListItem[]; title?: string }) { return ( <> -