diff --git a/web/src/components/apps/EmbeddedClusterManagement.tsx b/web/src/components/apps/EmbeddedClusterManagement.tsx index 3f4fc63580..24bd117c0e 100644 --- a/web/src/components/apps/EmbeddedClusterManagement.tsx +++ b/web/src/components/apps/EmbeddedClusterManagement.tsx @@ -468,7 +468,7 @@ const EmbeddedClusterManagement = ({

{rolesData?.roles && - rolesData?.roles?.length > 1 && + rolesData.roles.length > 1 && "Select one or more roles to assign to the new node. "} Copy the join command and run it on the machine you'd like to join to the cluster. @@ -483,9 +483,9 @@ const EmbeddedClusterManagement = ({ {rolesError?.message || "Unable to fetch roles"}

)} - {rolesData?.roles && rolesData?.roles.length > 1 && ( + {rolesData?.roles && rolesData.roles.length > 1 && (
- {rolesData?.roles.map((nodeType) => ( + {rolesData.roles.map((nodeType) => (