this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Another attempt

+6 -2
+6 -2
src/components/media-modal.jsx
··· 245 245 left: carouselRef.current.clientWidth * (currentIndex - 1), 246 246 behavior: 'smooth', 247 247 }); 248 - carouselRef.current.focus(); 248 + setTimeout(() => { 249 + carouselRef.current.focus(); 250 + }, 100); 249 251 }} 250 252 > 251 253 <Icon icon="arrow-left" /> ··· 261 263 left: carouselRef.current.clientWidth * (currentIndex + 1), 262 264 behavior: 'smooth', 263 265 }); 264 - carouselRef.current.focus(); 266 + setTimeout(() => { 267 + carouselRef.current.focus(); 268 + }, 100); 265 269 }} 266 270 > 267 271 <Icon icon="arrow-right" />