From ce59e3b2d4b453c52c87401520b2c4ba5d83f153 Mon Sep 17 00:00:00 2001 From: Daniel Chiquito Date: Fri, 4 Mar 2022 14:30:25 -0500 Subject: [PATCH] Remove leftover debug code --- client/src/components/TimeoutDialog.vue | 8 -------- 1 file changed, 8 deletions(-) diff --git a/client/src/components/TimeoutDialog.vue b/client/src/components/TimeoutDialog.vue index 74e23877..bbe482f3 100644 --- a/client/src/components/TimeoutDialog.vue +++ b/client/src/components/TimeoutDialog.vue @@ -59,7 +59,6 @@ export default defineComponent({ // the countdown timer up to date. const updateCountdown = () => { const now = Date.now(); - console.log('updating countdown', now); const sessionTimeRemaining = lastApiRequestTime.value + sessionTimeout - now; if (idleWarningTriggered.value) { // If the user is idle, we also need to consider the idle warning @@ -92,13 +91,6 @@ export default defineComponent({ idleTimeout, }; }, - onIdle() { - // TODO why this does not trigger - console.log('Triggered onIdle!'); - this.show = true; - this.idleWarningTriggered = true; - this.idleStartTime = Date.now(); - }, });