Skip to content

Commit

Permalink
fixed action cli in TS
Browse files Browse the repository at this point in the history
  • Loading branch information
plxity committed Dec 11, 2024
1 parent 3872ed9 commit b3804c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/src/cli/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ export default class ActionCommand {
.option("--use-case", "Search for actions based on the given use case")
.option("--limit <limit>", "Limit the number of actions to display")
.option("--enabled", "Only show enabled actions")
.option("--copy", "Copy the action to the clipboard")
.action(this.handleAction.bind(this));
}

Expand All @@ -37,6 +36,7 @@ export default class ActionCommand {
useCase?: string;
limit?: number;
enabled?: boolean;
copy?: boolean;
}): Promise<void> {
getOpenAPIClient();
const { apps = [], tags = [], useCase, limit, enabled } = options;
Expand Down

0 comments on commit b3804c9

Please sign in to comment.