From 72cf8f2e95dbf37c70fcb95bd64d27f98f828fba Mon Sep 17 00:00:00 2001 From: Simon Rey <51708585+simonrey1@users.noreply.github.com> Date: Fri, 17 Apr 2026 10:08:50 +0200 Subject: [PATCH] fix(compose): remove hardcoded product name from error message Address review feedback: drop "Podman Desktop" from the version check failure message and remove duplicated predicate in downloadCommand when-clause. Signed-off-by: Simon Rey Co-authored-by: Claude Made-with: Cursor Signed-off-by: Simon Rey <51708585+simonrey1@users.noreply.github.com> --- extensions/compose/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/compose/package.json b/extensions/compose/package.json index 02dd18aba35..2a663c30ceb 100644 --- a/extensions/compose/package.json +++ b/extensions/compose/package.json @@ -63,7 +63,7 @@ "content": [ [ { - "value": "Podman Desktop was unable to retrieve the latest Compose version. This may be caused by a GitHub API rate limit or a network issue.\n\nPlease try again later or check your network connection." + "value": "Unable to retrieve the latest Compose version. This may be caused by a GitHub API rate limit or a network issue.\n\nPlease try again later or check your network connection." } ] ] @@ -97,7 +97,7 @@ "id": "downloadCommand", "title": "Downloading Compose ${onboardingContext:composeDownloadVersion}", "description": "Downloading the binary.\n\nOnce downloaded, the next step will install Compose system-wide.", - "when": "!compose.isComposeInstalledSystemWide && !compose.isPodmanComposeInstalledSystemWide && !compose.isPodmanComposeInstalledSystemWide && onboardingContext:composeIsNotDownloaded && !onboardingContext:composeVersionCheckFailed", + "when": "!compose.isComposeInstalledSystemWide && !compose.isPodmanComposeInstalledSystemWide && onboardingContext:composeIsNotDownloaded && !onboardingContext:composeVersionCheckFailed", "command": "compose.onboarding.downloadCommand", "completionEvents": [ "onCommand:compose.onboarding.downloadCommand"