Skip to content

Commit 9afd84c

Browse files
committed
Update Home.tsx
1 parent ad49319 commit 9afd84c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pages/Home.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const ImageCycle = () => {
5252
const activeOuterRadius = 124; // Thicker outer radius for active segment
5353
const center = 124; // Center of SVG, adjusted for larger viewBox
5454

55-
return images.map((image, index) => {
55+
return images.map((_, index) => {
5656
const startAngle = index * (segmentAngle + gapAngle) + gapAngle / 2;
5757
const endAngle = startAngle + segmentAngle;
5858
const startRad = (startAngle * Math.PI) / 180;

0 commit comments

Comments
 (0)