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
 
5
 
6
 const VideoAds = ({ video_url, height, width }) => {
6
 const VideoAds = ({ video_url, height, width }) => {
7
   const videoRef = useRef(null);
7
   const videoRef = useRef(null);
8
-  const [isMuted, setIsMuted] = useState(true);
8
+  const [isMuted, setIsMuted] = useState(false);
9
 
9
 
10
   const toggleMute = () => {
10
   const toggleMute = () => {
11
     if (videoRef.current) {
11
     if (videoRef.current) {

Loading…
Cancel
Save