diff --git a/src/commands/createContainerApp/ImageSourceListStep.ts b/src/commands/createContainerApp/ImageSourceListStep.ts index 1b0f8604e..2bde20049 100644 --- a/src/commands/createContainerApp/ImageSourceListStep.ts +++ b/src/commands/createContainerApp/ImageSourceListStep.ts @@ -9,6 +9,7 @@ import { localize } from "../../utils/localize"; import { ContainerRegistryListStep } from "../deployImage/ContainerRegistryListStep"; import { EnvironmentVariablesListStep } from "./EnvironmentVariablesListStep"; import { IContainerAppContext } from './IContainerAppContext'; +import { setQuickStartImage } from "./setQuickStartImage"; export class ImageSourceListStep extends AzureWizardPromptStep { public async prompt(context: IContainerAppContext): Promise { @@ -20,7 +21,7 @@ export class ImageSourceListStep extends AzureWizardPromptStep[] = [ - { label: imageSourceLabels[0], data: ImageSource.QuickStartImage, suppressPersistence: true }, + { label: imageSourceLabels[0], data: ImageSource.QuickStartImage, suppressPersistence: true }, { label: imageSourceLabels[1], data: ImageSource.ExternalRegistry, suppressPersistence: true }, // { label: imageSourceLabels[2], data: undefined, suppressPersistence: true }, ]; @@ -37,13 +38,13 @@ export class ImageSourceListStep extends AzureWizardPromptStep