Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 498 Bytes

popstate-state-empty.md

File metadata and controls

14 lines (8 loc) · 498 Bytes

popstate called with empty state

Why This Error Occurred

When using the browser back button the popstate event is triggered. Next.js sets popstate event triggered but event.state did not have url or as, causing a route change failure

Possible Ways to Fix It

The only known cause of this issue is manually manipulating window.history instead of using next/router

Useful Links