Skip to content

Commit

Permalink
fix: remove space character after item URL in shop carousel
Browse files Browse the repository at this point in the history
  • Loading branch information
alvyynm committed Oct 29, 2024
1 parent 876e893 commit 1e7132e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/shop/sections/Banner/Carousal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function Carousel() {
From KES {formatPrice(swagList[selectedIndex]?.price)}
</p>
<Link
to={`/shop/item/${isSuccess ? swagList[selectedIndex]?.slug : ""} `}
to={`/shop/item/${isSuccess ? swagList[selectedIndex]?.slug : ""}`}
className="text-white font-bold bg-gradient-to-b to-primary from-green-dark py-3 px-4 mb-2 rounded-md"
>
Shop Now
Expand Down

0 comments on commit 1e7132e

Please sign in to comment.