diff --git a/src/hooks/usePlayerControls.ts b/src/hooks/usePlayerControls.ts index 080cb55e..00cc4c4d 100644 --- a/src/hooks/usePlayerControls.ts +++ b/src/hooks/usePlayerControls.ts @@ -63,6 +63,7 @@ const usePlayerControls = ( dispatch(fixPlayer2Index()); } else if (currentPlayer === 1) { playersRef.current.player1.audioEl.current.currentTime = 0; + playersRef.current.player1.audioEl.current.volume = playQueue.volume; // Reset the alt player if reset during fade playersRef.current.player2.audioEl.current.currentTime = 0; @@ -83,6 +84,7 @@ const usePlayerControls = ( } } else { playersRef.current.player2.audioEl.current.currentTime = 0; + playersRef.current.player2.audioEl.current.volume = playQueue.volume; // Reset the alt player if reset during fade playersRef.current.player1.audioEl.current.currentTime = 0;