Removes unnecessary comment

Removes an extraneous comment from the error handling logic, improving code clarity.
This commit is contained in:
maguire-arman 2025-07-16 12:44:45 -04:00
parent 4d38768554
commit 70a69079e7

View file

@ -61,7 +61,6 @@ window.onerror = (msg, url, line, col, error) => {
// If you return true, then error alerts (like in older versions of
// Internet Explorer) will be suppressed.
// Additonal comment for test
var suppressErrorAlert = true;
return suppressErrorAlert;
};