diff --git a/desktop/static/index.web.dev.html b/desktop/static/index.web.dev.html
index 0414adba0..9381024a6 100644
--- a/desktop/static/index.web.dev.html
+++ b/desktop/static/index.web.dev.html
@@ -204,6 +204,9 @@
})
function showMessage(text) {
+ // Dismiss the troubleshoot as otherwise no other message is shown.
+ toggleTroubleshoot(false);
+
if (suppressErrors) {
return;
}
diff --git a/desktop/static/index.web.html b/desktop/static/index.web.html
index 833f7efca..3f63b037b 100644
--- a/desktop/static/index.web.html
+++ b/desktop/static/index.web.html
@@ -144,7 +144,6 @@
(function () {
// FIXME: needed to make Metro work
window.global = window;
- let suppressErrors = false;
// Listen to changes in the network state, reload when online.
// This handles the case when the device is completely offline
@@ -167,9 +166,8 @@
}
function showMessage(text) {
- if (suppressErrors) {
- return;
- }
+ // Dismiss the troubleshoot as otherwise no other message is shown.
+ toggleTroubleshoot(false);
let box = document.getElementById('loading');
if (box) {