Skip to content

Commit

Permalink
fix: fixed type mismatch issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Vikram Kalta authored and Vikram Kalta committed Sep 19, 2023
1 parent a1ffd66 commit f677583
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/inquirer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ async function getInstallation(
// fetch stacks from where the app has to be uninstalled
cliux.loader("done");
const stacks: Stack[] = await getStacks({managementSdk: managementSdkForStacks, log: options.log}, orgUid);
installations = populateMissingDataInInstallations(installations, stacks)
installations = populateMissingDataInInstallations(installations as [Installation], stacks)
// To support uninstall all flag
if (uninstallAll) {
return installations.map(installation => installation.uid).join(',')
Expand Down

0 comments on commit f677583

Please sign in to comment.