Hi,
Receiving a javascript error for document.body.classList being undefined on this line which then causes nothing but trouble after that:
if (document.fonts) {
document.body.classList.add('rz-icons-loading');
document.fonts.load('16px Material Symbols').then(() => {
document.body.classList.remove('rz-icons-loading');
})
}
I am sure I am missing something in my setup, just don't know what. It is Blazor WASM.