Skip to content

Commit

Permalink
Feat: fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsemach Lifshitz committed Dec 25, 2024
1 parent 62d3eb1 commit 4aea1e5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/services/app-promote-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@ export const shouldPromoteLatestDraftVersion = async () => {
return userChoice === PROMOTE_LATEST_DRAFT_VERSION;
};

export const promoteAppTask = async (
ctx: PromoteCommandTasksContext,
task: ListrTaskWrapper<PromoteCommandTasksContext, any>,
): Promise<void> => {
export const promoteAppTask = async (ctx: PromoteCommandTasksContext): Promise<void> => {
const { appId, appVersionId } = ctx;
const path = promoteAppUrl(appId);
const url = appsUrlBuilder(path);
Expand Down

0 comments on commit 4aea1e5

Please sign in to comment.