Skip to content

Commit b8eb3ac

Browse files
committed
fix: var name
1 parent f747261 commit b8eb3ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/atlas/read/listClusters.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ ${rows}`,
107107
const instanceSize =
108108
(regionConfigs.length <= 0 ? undefined : regionConfigs[0].instanceSize) || "UNKNOWN";
109109

110-
const clusterInstaceType = instanceSize == "M0" ? "FREE" : "DEDICATED";
110+
const clusterInstanceType = instanceSize == "M0" ? "FREE" : "DEDICATED";
111111

112-
return `${cluster.name} | ${clusterInstaceType} | ${clusterInstaceType == "DEDICATED" ? instanceSize : "N/A"} | ${cluster.stateName} | ${mongoDBVersion} | ${connectionString}`;
112+
return `${cluster.name} | ${clusterInstanceType} | ${clusterInstanceType == "DEDICATED" ? instanceSize : "N/A"} | ${cluster.stateName} | ${mongoDBVersion} | ${connectionString}`;
113113
})
114114
.join("\n");
115115
return {

0 commit comments

Comments
 (0)