Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbristow committed Oct 25, 2024
1 parent aa5c2d0 commit 743726b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/Carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function MultiImageCarousel() {
];

const [currentIndex, setCurrentIndex] = useState(0);
const itemsPerView = 3; // Number of images visible at once
const itemsPerView = 5; // Number of images visible at once
const [isDragging, setIsDragging] = useState(false);
const [dragStartX, setDragStartX] = useState(0);
const [dragOffset, setDragOffset] = useState(0);
Expand Down

0 comments on commit 743726b

Please sign in to comment.