Browse Source

unmute video

master
azri 1 week ago
parent
commit
27301eac09
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/components/VideoAds/VideoAds.jsx

+ 1
- 1
src/components/VideoAds/VideoAds.jsx View File

@@ -5,7 +5,7 @@ import videoAds from "../../assets/video/amberads.mp4";
5 5
 
6 6
 const VideoAds = ({ video_url, height, width }) => {
7 7
   const videoRef = useRef(null);
8
-  const [isMuted, setIsMuted] = useState(true);
8
+  const [isMuted, setIsMuted] = useState(false);
9 9
 
10 10
   const toggleMute = () => {
11 11
     if (videoRef.current) {

Loading…
Cancel
Save