diff --git a/src/renderer/components/+landing-page/workspace-cluster.store.ts b/src/renderer/components/+landing-page/workspace-cluster.store.ts index 1117528a99..24834927b3 100644 --- a/src/renderer/components/+landing-page/workspace-cluster.store.ts +++ b/src/renderer/components/+landing-page/workspace-cluster.store.ts @@ -12,7 +12,7 @@ export class ClusterItem implements ItemObject { } get distribution() { - return (this.cluster.metadata["distribution"] || "unknown").toString(); + return this.cluster.metadata?.distribution?.toString() ?? "unknown"; } get version() {