From cabc08c04bd8fc9a50827bff941a6f534f567b43 Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Wed, 22 May 2024 09:27:35 -0500 Subject: [PATCH] fix(lint): remove console log --- website/client/src/components/appFooter.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/website/client/src/components/appFooter.vue b/website/client/src/components/appFooter.vue index 5a9b747469..b6dd901cd4 100644 --- a/website/client/src/components/appFooter.vue +++ b/website/client/src/components/appFooter.vue @@ -829,7 +829,6 @@ const DEBUG_ENABLED = process.env.DEBUG_ENABLED === 'true'; // eslint-disable-li const TIME_TRAVEL_ENABLED = process.env.TIME_TRAVEL_ENABLED === 'true'; // eslint-disable-line no-process-env let sinon; if (TIME_TRAVEL_ENABLED) { - console.log(TIME_TRAVEL_ENABLED); // eslint-disable-next-line global-require sinon = await import('sinon'); }