diff --git a/src/webui/history.js b/src/webui/history.js index 24426dba5..f8407b01f 100644 --- a/src/webui/history.js +++ b/src/webui/history.js @@ -6,10 +6,4 @@ import { createBrowserHistory } from 'history'; const history = createBrowserHistory(); -// Listen for changes to the current location. -history.listen((location, action) => { - // location is an object like window.location - console.log('====>', action, location.pathname, location.state); -}); - export default history;