Skip to content

Commit 0ae7159

Browse files
CopilotMicroFish91
andcommitted
Remove redundant undefined initialization
Co-authored-by: MicroFish91 <40250218+MicroFish91@users.noreply.github.com>
1 parent 737753a commit 0ae7159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/createFunctionApp/containerImage/ContainerizedFunctionAppCreateStep.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class ContainerizedFunctionAppCreateStep extends AzureWizardExecuteStepWi
6262
private async getNewSite(context: IFunctionAppWizardContext): Promise<Site> {
6363
const location = await LocationListStep.getLocation(context, webProvider);
6464

65-
let identity: Identity | undefined = undefined;
65+
let identity: Identity | undefined;
6666
if (context.managedIdentity) {
6767
const userAssignedIdentities: Record<string, IdentityUserAssignedIdentitiesValue> = {};
6868
userAssignedIdentities[nonNullProp(context.managedIdentity, 'id')] =

0 commit comments

Comments
 (0)