Ver código fonte

Remove Multi Cluster (#2869)

Co-authored-by: Soham Dessai <sohamdessai@sohams-mbp.mynetworksettings.com>
sdess09 3 anos atrás
pai
commit
c10b923027

+ 5 - 5
dashboard/src/main/home/dashboard/ClusterSection.tsx

@@ -93,11 +93,11 @@ const ClusterSection = (props: Props) => {
   }
   }
   return (
   return (
     <>
     <>
-      {/* {(usage?.current.cluster > 1 || !currentCluster) && ( */}
-      <Button onClick={() => setCurrentStep("cloud")}>
-        <i className="material-icons">add</i> Create a cluster
-      </Button>
-      {/* )} */}
+      {(usage?.current.cluster > 1 || !currentCluster) && (
+        <Button onClick={() => setCurrentStep("cloud")}>
+          <i className="material-icons">add</i> Create a cluster
+        </Button>
+      )}
       <ClusterList />
       <ClusterList />
     </>
     </>
   );
   );