Problem/Motivation
The main-menu.js file included in the Umami theme tries to add an event listener to the main menu block without checking if it actually exists. If the block isn't present on a page, the JS will throw an error:
Cannot read property 'addEventListener' of null
Proposed resolution
Check to make sure `toggler` is not null before adding the event listener.