Remove uninended logs statements. (#191)

This commit is contained in:
Jas Singh
2024-08-25 18:59:22 -07:00
committed by GitHub
parent 60096ced7c
commit cedf94ff41

View File

@@ -88,11 +88,6 @@ const Workspaces = (monitor = -1) => {
hyprland.active.workspace.bind("id") hyprland.active.workspace.bind("id")
], ],
(show_icons, show_numbered, numbered_active_indicator) => { (show_icons, show_numbered, numbered_active_indicator) => {
if (index === 0) {
console.log('in');
}
if (show_icons) { if (show_icons) {
return `workspace-icon txt-icon bar`; return `workspace-icon txt-icon bar`;
} }
@@ -194,10 +189,6 @@ const Workspaces = (monitor = -1) => {
class_name: renderClassnames(showIcons, showNumbered, numberedActiveIndicator, i), class_name: renderClassnames(showIcons, showNumbered, numberedActiveIndicator, i),
label: renderLabel(showIcons, available, active, occupied, workspaceMask, i, index), label: renderLabel(showIcons, available, active, occupied, workspaceMask, i, index),
setup: (self) => { setup: (self) => {
if (index === 0) {
console.log('in');
}
self.toggleClassName( self.toggleClassName(
"active", "active",
activeId === i, activeId === i,