From 4aea1e554976ba9ddae5b22790a963ee64fe7e11 Mon Sep 17 00:00:00 2001 From: Tsemach Lifshitz Date: Wed, 25 Dec 2024 10:07:24 +0200 Subject: [PATCH] Feat: fix lint issue --- src/services/app-promote-service.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/services/app-promote-service.ts b/src/services/app-promote-service.ts index 686e9b9..9299750 100644 --- a/src/services/app-promote-service.ts +++ b/src/services/app-promote-service.ts @@ -22,10 +22,7 @@ export const shouldPromoteLatestDraftVersion = async () => { return userChoice === PROMOTE_LATEST_DRAFT_VERSION; }; -export const promoteAppTask = async ( - ctx: PromoteCommandTasksContext, - task: ListrTaskWrapper, -): Promise => { +export const promoteAppTask = async (ctx: PromoteCommandTasksContext): Promise => { const { appId, appVersionId } = ctx; const path = promoteAppUrl(appId); const url = appsUrlBuilder(path);