joshwcomeau / use-sound

A React Hook for playing sound effects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

After component is unmounted, sound is still playing

mscin opened this issue · comments

commented

I'm also facing same issue. Is there any solution available? thanks

commented

I use this approach:

  // Turn off sound when leaving page
  useEffect(() => {
    return () => {
      console.debug('Turning off background music')
      Howler.stop()
    }
  }, [])