fix: Don't print error twice when background crashes

This commit is contained in:
Aaron Klinker
2023-06-24 08:52:07 -05:00
parent 3e37de97a6
commit 407627c1e7
+1 -1
View File
@@ -8,6 +8,6 @@ try {
);
}
} catch (err) {
console.error('The background script crashed on startup!\n\n', err);
console.error('The background script crashed on startup!');
throw err;
}