We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6d7613 commit ba0ddf6Copy full SHA for ba0ddf6
src/commands/package/pushupgrade/list.ts
@@ -58,10 +58,10 @@ export class PackagePushRequestListCommand extends SfCommand<PackagePushRequestL
58
// Get results of query here
59
// Use const since we will add verbose later
60
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access
61
- const results: PackagePushRequestListResult[] = (await PackagePushUpgrade.list(this.connection, {
+ const results: PackagePushRequestListResult[] = await PackagePushUpgrade.list(this.connection, {
62
packageId: flags.packageid,
63
status: flags.status,
64
- })) as PackagePushRequestListResult[];
+ });
65
66
if (results.length === 0) {
67
this.warn('No results found');
0 commit comments