From 9923dbc3fdf2024bf8d3db03ddba5b266830624f Mon Sep 17 00:00:00 2001 From: seppulcro Date: Thu, 10 Oct 2024 16:53:34 +0100 Subject: [PATCH] feat: Add the ability to cycle through panels (hidden configurable) --- src/services/sidebar.actions.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/services/sidebar.actions.ts b/src/services/sidebar.actions.ts index 2b128355..b6fad999 100644 --- a/src/services/sidebar.actions.ts +++ b/src/services/sidebar.actions.ts @@ -1361,7 +1361,6 @@ export function switchPanel( for (let i = actIndex + dir; i >= 0 || i < hiddenPanels.length; i += dir) { panel = hiddenPanels[i] newActIsHidden = true - console.log('Here') if (!panel) { if (visiblePanels.length) { panel = visiblePanels[dir > 0 ? hdnIndex : hdnIndex - 1]