File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/model-serving/src/components/deploymentWizard Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -58,8 +58,8 @@ const ModelDeploymentWizard: React.FC<ModelDeploymentWizardProps> = ({
5858 const [ externalData , setExternalData ] = React . useState < ExternalDataMap > ( { } ) ;
5959
6060 const wizardState = useModelDeploymentWizard ( existingData , project ?. metadata . name , externalData ) ;
61- const currentProjectName = wizardState . state . project . projectName ?? undefined ;
6261 const validation = useModelDeploymentWizardValidation ( wizardState . state , wizardState . fields ) ;
62+ const currentProjectName = wizardState . state . project . projectName ?? undefined ;
6363
6464 const { deployMethod, deployMethodLoaded } = useDeployMethod ( wizardState . state ) ;
6565 // TODO in same jira, replace deployMethod with applyFieldData for all other fields
@@ -289,9 +289,9 @@ const ModelDeploymentWizard: React.FC<ModelDeploymentWizardProps> = ({
289289 wizardState . loaded . advancedOptionsLoaded ? (
290290 < AdvancedSettingsStepContent
291291 wizardState = { wizardState }
292- externalData = { externalData }
292+ externalData = { externalData }
293293 allowCreate = { wizardState . state . canCreateRoleBindings }
294- />
294+ />
295295 ) : (
296296 < Spinner data-testid = "spinner" />
297297 )
You can’t perform that action at this time.
0 commit comments