This repository has no description
0

Configure Feed

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

Update ImageEmbed.tsx

-2
-2
src/webapp/features/platforms/bluesky/components/imageEmbed/ImageEmbed.tsx
··· 14 14 export default function ImageEmbed(props: Props) { 15 15 const { settings } = useUserSettings(); 16 16 const [lightboxOpened, setLightboxOpened] = useState(false); 17 - const [initialSlide, setInitialSlide] = useState(0); 18 17 19 18 const lightboxImages = props.images.map((img) => ({ 20 19 src: img.fullsize, ··· 23 22 24 23 const openLightbox = (e: React.MouseEvent, index: number) => { 25 24 e.stopPropagation(); 26 - setInitialSlide(index); 27 25 setLightboxOpened(true); 28 26 }; 29 27