From 70a69079e7dc08401ffcee0d1487de0cbada00ba Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Wed, 16 Jul 2025 12:44:45 -0400 Subject: [PATCH] Removes unnecessary comment Removes an extraneous comment from the error handling logic, improving code clarity. --- src/App.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index e6707767b..cae31dd24 100644 --- a/src/App.vue +++ b/src/App.vue @@ -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; };