Skip to content

Commit 8bd08f3

Browse files
committed
Rebase
1 parent eb9d6ea commit 8bd08f3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/model-serving/src/components/deploymentWizard/ModelDeploymentWizard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
)

0 commit comments

Comments
 (0)