diff --git a/frontend/src/components/Search/RecommendList/RecommendList.tsx b/frontend/src/components/Search/RecommendList/RecommendList.tsx index 1463244ae..93f853eae 100644 --- a/frontend/src/components/Search/RecommendList/RecommendList.tsx +++ b/frontend/src/components/Search/RecommendList/RecommendList.tsx @@ -28,15 +28,18 @@ const RecommendList = ({ searchQuery }: RecommendListProps) => { } return ( - - {products.map(({ id, name, categoryType }) => ( -
  • - - - -
  • - ))} -
    + <> + + {products.map(({ id, name, categoryType }) => ( +
  • + + + +
  • + ))} +
    +
    + ); };