changed e to _ as e was not used

Signed-off-by: rodude123 <rodude123@gmail.com>
This commit is contained in:
Rohit Pai 2023-07-12 03:30:45 +01:00
parent 3b71ba4d23
commit 65bfe759b7

View File

@ -4,7 +4,7 @@ document.addEventListener('DOMContentLoaded', () =>
goToURL(window.location.pathname);
});
window.addEventListener('popstate', e =>
window.addEventListener('popstate', _ =>
{
goToURL(window.history.state);
});