Skip to content

Commit

Permalink
chore: 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
bottlewook committed Mar 3, 2024
1 parent f6d74bf commit 9de333d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/shared/carousel/RecommendList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function RecommendList({ recommendProductsData }: { recommendProductsData: Recom
<Slider {...settings} className="recommend-slide">
{recommendList?.map((slide) => {
return (
<Link href={slide.productNo.toString()} key={slide.productNo}>
<Link href={`/product/${slide.productNo.toString()}`} key={slide.productNo}>
<div className="img-container">
<Image
// src={slide.imageSource}
Expand Down

0 comments on commit 9de333d

Please sign in to comment.