Skip to content

Commit

Permalink
fix: remove unnecessary void
Browse files Browse the repository at this point in the history
Signed-off-by: lstocchi <[email protected]>
  • Loading branch information
lstocchi committed Jan 29, 2024
1 parent b6e2ed7 commit e4e5f54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/backend/src/studio-api-impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ export class StudioApiImpl implements StudioAPI {
const model = await this.getModelById(modelId);

// Do not wait for the pull application, run it separately
void podmanDesktopApi.window
.withProgress<void>(
podmanDesktopApi.window
.withProgress(
{ location: podmanDesktopApi.ProgressLocation.TASK_WIDGET, title: `Pulling ${recipe.name}.` },
() => this.applicationManager.pullApplication(recipe, model),
)
Expand Down

0 comments on commit e4e5f54

Please sign in to comment.