Skip to content

Commit

Permalink
Fix casing of OrgUrl to orgUrl in site creation input handling (#1077)
Browse files Browse the repository at this point in the history
Co-authored-by: amitjoshi <[email protected]>
  • Loading branch information
amitjoshi438 and amitjoshi authored Dec 16, 2024
1 parent bb7e469 commit c048bb5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ export async function collectSiteCreationInputs(siteName: string, envList: IEnvI
: undefined,
});
state.envName = pick.label;
state.OrgUrl = pick.description;
state.orgUrl = pick.description;
return (input: MultiStepInput) => inputSiteName(input, state);
}

Expand Down

0 comments on commit c048bb5

Please sign in to comment.