Skip to content

Commit

Permalink
fix upgrade success message (#2709)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgodson authored Jan 15, 2025
1 parent 650d57b commit 6bc6068
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/commands/hydrogen/upgrade.ts
Original file line number Diff line number Diff line change
Expand Up @@ -777,8 +777,8 @@ async function displayUpgradeSummary({
const fromToMsg = `${currentPinnedVersion}${selectedPinnedVersion}`;

const headline = upgradedDependenciesOnly
? `You've have upgraded Hydrogen ${selectedPinnedVersion} dependencies`
: `You've have upgraded from ${fromToMsg}`;
? `You've upgraded Hydrogen ${selectedPinnedVersion} dependencies`
: `You've upgraded from ${fromToMsg}`;

const packageManager = await getPackageManager(appPath);

Expand Down

0 comments on commit 6bc6068

Please sign in to comment.