hoverzoom
hoverzoom copied to clipboard
TypeError: Cannot read property 'split' of null
I see similar errors in the console in different sites. You can add a null
check before all string.splits
.
The easiest way is to add string?.split(
more about Optional chaining