diff --git a/src/components/Search/RecipeSearchResultPreviewList/RecipeSearchResultPreviewList.tsx b/src/components/Search/RecipeSearchResultPreviewList/RecipeSearchResultPreviewList.tsx index c47a0d2c..4786a2c0 100644 --- a/src/components/Search/RecipeSearchResultPreviewList/RecipeSearchResultPreviewList.tsx +++ b/src/components/Search/RecipeSearchResultPreviewList/RecipeSearchResultPreviewList.tsx @@ -32,9 +32,7 @@ const RecipeSearchResultPreviewList = ({ searchQuery }: RecipeSearchResultPrevie {displaySlice(false, recipes, 4).map((recipe, idx) => (
  • {idx < 4 ? ( - - - + ) : (
    diff --git a/src/pages/RecipeSearchListPage/RecipeSearchListPage.tsx b/src/pages/RecipeSearchListPage/RecipeSearchListPage.tsx index fcfdd490..eee7a8c5 100644 --- a/src/pages/RecipeSearchListPage/RecipeSearchListPage.tsx +++ b/src/pages/RecipeSearchListPage/RecipeSearchListPage.tsx @@ -1,12 +1,11 @@ import { useRef } from 'react'; -import { Link, useSearchParams } from 'react-router-dom'; +import { useSearchParams } from 'react-router-dom'; import { listWrapper } from './recipeSearchListPage.css'; import { PageHeader } from '@/components/Common'; import { DefaultRecipeItem } from '@/components/Recipe'; import SearchNotFound from '@/components/Search/SearchNotFound/SearchNotFound'; -import { PATH } from '@/constants/path'; import { useIntersectionObserver } from '@/hooks/common'; import { useInfiniteRecipeSearchResultsQuery } from '@/hooks/queries/search'; @@ -30,9 +29,7 @@ export const RecipeSearchListPage = () => {
      {recipes.map((recipe) => (
    • - - - +
    • ))}