Make error loging unintrusive

This alert can show up under normal use circumstances on mobile
This commit is contained in:
toasted-nutbread 2019-02-19 22:51:48 -05:00
parent c933a55b81
commit 884be644ec

View File

@ -256,7 +256,7 @@ class Frontend {
}
onError(error) {
window.alert(`Error: ${error.toString ? error.toString() : error}`);
console.log(error);
}
popupTimerSet(callback) {