Skip to content

Commit

Permalink
feat: 필터 상품 상세페이지 이동 기능 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
gyeongza committed Jun 5, 2024
1 parent 0ba7958 commit fb98236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/search/components/searchResult/Item/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const SearchResultItem = ({ productItem }: ProductItemProps) => {

return (
<li className="w-full mb-5">
<Link href="" className="flex flex-col gap-2 cursor-pointer">
<Link href={`/products/${productItem.id}`} className="flex flex-col gap-2 cursor-pointer">
<div className="flex items-center justify-center w-auto h-full rounded-md border-gray-200 border">
<Image
src={productItem.imageUrl}
Expand Down

0 comments on commit fb98236

Please sign in to comment.