Skip to content

Commit

Permalink
ci: fix images
Browse files Browse the repository at this point in the history
  • Loading branch information
Ron de las Alas committed Oct 3, 2023
1 parent 731f0aa commit 0f1dfb8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/carousel/carousel.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ const Carousel = ({items}) => {
return (
<Slider {...settings}>
{
items.map((item, index) => (
<div key={index}><img src={item} /></div>
))
items.map((item, index) => {
const i = `/junior/${item}`;
return <div key={index}><img src={i} /></div>;
})
}
</Slider>
);
Expand Down

0 comments on commit 0f1dfb8

Please sign in to comment.