@@ -151,7 +151,7 @@ export function ClusterForm({
151151 }
152152 } , [ defaultValues , firstTime , setSavedClusterState ] ) ;
153153
154- const systemName = form . watch ( 'systemName ' ) ;
154+ const clusterName = form . watch ( 'clusterName ' ) ;
155155 const abbreviatedName = form . watch ( 'abbreviatedName' ) ;
156156 const selectedDeployment = form . watch ( 'deploymentDescription' ) ;
157157 const selectedPerformance = form . watch ( 'performanceDescription' ) ;
@@ -202,14 +202,14 @@ export function ClusterForm({
202202
203203 const calculatedNames = useMemo ( ( ) => {
204204 const suggestedAbbreviatedName = collapseKebabsToMaxLength (
205- toKebabCase ( systemName ) ,
205+ toKebabCase ( clusterName ) ,
206206 UpsertClusterSchema . shape . abbreviatedName . unwrap ( ) . maxLength ! ,
207207 ) ;
208208 return {
209209 suggestedAbbreviatedName,
210210 fullHostName : `${ abbreviatedName || suggestedAbbreviatedName } .${ organization . subdomain || 'your-org' } .harperfabric.com` ,
211211 } ;
212- } , [ systemName , abbreviatedName , organization ] ) ;
212+ } , [ clusterName , abbreviatedName , organization ] ) ;
213213 const selectedPlan = useMemo ( ( ) =>
214214 deploymentToPerformanceToPlan ?. [ selectedDeployment ] ?. [ selectedPerformance ] , [ deploymentToPerformanceToPlan , selectedDeployment , selectedPerformance ] ) ;
215215
@@ -340,7 +340,7 @@ export function ClusterForm({
340340 : ( formData . abbreviatedName || calculatedNames . suggestedAbbreviatedName ) ,
341341 autoRenew : true ,
342342 fqdn : isSelfManaged && formData . fqdn || undefined ,
343- name : formData . systemName ,
343+ name : formData . clusterName ,
344344 organizationId,
345345 regionPlans : plans ,
346346 } , {
@@ -375,11 +375,9 @@ export function ClusterForm({
375375 { ! confirmingPaymentDetails
376376 ? ( < >
377377 < h1 className = "text-lg leading-none text-white font-semibold mb-4" > Cluster Configuration</ h1 >
378- < p className = "text-muted-foreground text-sm mb-6" > Configure your Harper system and define
379- deployment
380- plans.</ p >
378+ < p className = "text-muted-foreground text-sm mb-6" >
379+ Configure your Harper cluster and define deployment plans.</ p >
381380
382- < h1 className = "text-lg leading-none text-white font-semibold mb-4" > System</ h1 >
383381 < form onSubmit = { form . handleSubmit ( submitClusterDetailsForm ) } >
384382 < ClusterDetails
385383 calculatedNames = { calculatedNames }
0 commit comments