Skip to content

Commit

Permalink
Link fix
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Rybalko authored and fokaaas committed Jun 6, 2024
1 parent 40ab4ad commit 32ea7ed
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function AuctionList({ auctions }: AuctionListProps) {
return (
<ul className="grid gap-8 md:grid-cols-2 lg:grid-cols-3">
{auctions.map((auction, index) => (
<AuctionCard auction={auction} key={index} link={`${auction.id}`}/>
<AuctionCard auction={auction} key={index} link={`auction/${auction.id}`}/>
))}
</ul>
);
Expand Down

0 comments on commit 32ea7ed

Please sign in to comment.