diff --git a/app/ayanova/src/App.vue b/app/ayanova/src/App.vue
index 89513851..8f78db52 100644
--- a/app/ayanova/src/App.vue
+++ b/app/ayanova/src/App.vue
@@ -22,12 +22,9 @@
-
-
- fa-question-circle
-
- Tooltip
-
+
+ fa-question-circle
+
diff --git a/app/ayanova/src/utils/authutil.js b/app/ayanova/src/utils/authutil.js
index 326dba94..8e4f5abe 100644
--- a/app/ayanova/src/utils/authutil.js
+++ b/app/ayanova/src/utils/authutil.js
@@ -42,7 +42,9 @@ export function processLogin(response) {
}
export function processLogout() {
- store.commit("logItem", "auth::processLogout -> User logged out");
+ if (store.state.authenticated) {
+ store.commit("logItem", "auth::processLogout -> User logged out");
+ }
store.commit("logout");
}