How do you debug?

Adding some flavor to this one since months later I still am having this issue consistently and can’t figure out the root cause.

When reviewing the console when using the Page Picker, it was seen that a TypeError is occurring.

Going into the console’s stack trace, it’s seen that an array of hashtags is created from pageMeta.tags and defined as a description as a joined string with spaces between them, unless there are none in which case a blank string is assigned (i.e., it adds hashtags from pageMeta.tags to a description variable if pageMeta.tags exists).
image

I’ve started digging deeper, but everything in JS libraries are minified and very difficult to understand outside of just seeing what variables are holding in the debugger. I’m not sure if there’s a way to de-“minify” them to understand processes better.

My best guess is that a page I’ve created at some point is inappropriately tagged such that it breaks the navigator. My next step will be to start a fresh silverbullet server and populate it with templates (and other pages) one at a time until I can identify the source of grief.