Skip to content

Commit

Permalink
Make music loop again
Browse files Browse the repository at this point in the history
  • Loading branch information
SupernaviX authored and yHSJ committed Dec 6, 2024
1 parent 664ed46 commit e056cca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MusicPlayer/MusicPlayer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { IoMdVolumeHigh, IoMdVolumeOff } from "react-icons/io";

import song1 from "../../assets/music/doom-newm.mp3";

const files = [song1];
const files = [song1, song1];

const MusicPlayer: React.FC = () => {
const [isPlaying, setIsPlaying] = useState<boolean>(false);
Expand Down

0 comments on commit e056cca

Please sign in to comment.