diff --git a/html/src/app.js b/html/src/app.js
index 94412ecd..983c3f68 100644
--- a/html/src/app.js
+++ b/html/src/app.js
@@ -9310,6 +9310,7 @@ speechSynthesis.getVoices();
);
this.updateSharedFeed(true);
this.updateVRConfigVars();
+ AppApi.ExecuteVrOverlayFunction('notyClear', '');
};
$app.data.TTSvoices = speechSynthesis.getVoices();
$app.methods.saveNotificationTTS = function () {
diff --git a/html/src/vr.js b/html/src/vr.js
index 7d7f5d31..f5aab843 100644
--- a/html/src/vr.js
+++ b/html/src/vr.js
@@ -490,6 +490,10 @@ import configRepository from './repository/config.js';
return text;
};
+ $app.methods.notyClear = function () {
+ Noty.closeAll();
+ };
+
$app = new Vue($app);
window.$app = $app;
})();