diff --git a/src/common/components/video-gallery/video-gallery-item.tsx b/src/common/components/video-gallery/video-gallery-item.tsx index bcd2190ef64..c4d8324689f 100644 --- a/src/common/components/video-gallery/video-gallery-item.tsx +++ b/src/common/components/video-gallery/video-gallery-item.tsx @@ -4,6 +4,8 @@ import { dateToFullRelative } from "../../helper/parse-date"; import React, { useEffect, useState } from "react"; import { ThreeSpeakVideo, useThreeSpeakVideo } from "../../api/threespeak"; import { Button } from "react-bootstrap"; +import { proxifyImageSrc } from "@ecency/render-helper"; +import { useMappedStore } from "../../store/use-mapped-store"; interface videoProps { status: string; @@ -30,6 +32,7 @@ export function VideoGalleryItem({ setShowGallery, setVideoMetadata }: Props) { + const { global } = useMappedStore(); const { data } = useThreeSpeakVideo("all"); const [showMoreInfo, setShowMoreInfo] = useState(false); @@ -125,7 +128,10 @@ export function VideoGalleryItem({ return (