Handle click to close, close animation timing

This commit is contained in:
Michael Shamoon 2022-10-19 20:16:29 -07:00
parent a1788b01c3
commit 5abe13c726
2 changed files with 22 additions and 13 deletions

View file

@ -209,7 +209,7 @@ function Home({ initialSettings }) {
document.addEventListener('keydown', handleKeyDown);
return function cleanup() {
document.removeEventListener('keydown', handleKeyDown);
document.removeEventListener('keydown', handleKeyDown);
}
})