From 4e43506577ddf833bf46f4f640155966672e8192 Mon Sep 17 00:00:00 2001 From: Alex Andreev Date: Thu, 19 Nov 2020 16:04:31 +0300 Subject: [PATCH] Remove console.log() Signed-off-by: Alex Andreev --- src/common/workspace-store.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/common/workspace-store.ts b/src/common/workspace-store.ts index fa00655698..f0421aee6b 100644 --- a/src/common/workspace-store.ts +++ b/src/common/workspace-store.ts @@ -189,7 +189,6 @@ export class WorkspaceStore extends BaseStore { @action setLastActiveClusterId(clusterId: ClusterId, workspaceId = this.currentWorkspaceId) { - console.log("Passed cluster ID", clusterId, "current workspace id = ", workspaceId) if (clusterId != null) { this.getById(workspaceId).lastActiveClusterId = clusterId; }