diff --git a/src/main/cluster.ts b/src/main/cluster.ts index 176264f8b8..9a9c1adab4 100644 --- a/src/main/cluster.ts +++ b/src/main/cluster.ts @@ -37,7 +37,6 @@ export type ClusterRefreshOptions = { }; export interface ClusterState { - initializing: boolean; initialized: boolean; enabled: boolean; apiUrl: string; @@ -579,7 +578,6 @@ export class Cluster implements ClusterModel, ClusterState { */ getState(): ClusterState { const state: ClusterState = { - initializing: this.initializing, initialized: this.initialized, enabled: this.enabled, apiUrl: this.apiUrl,