diff --git a/CHANGELOG.md b/CHANGELOG.md index 813639d54..dbfea57a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ This is the log of notable changes to EAS CLI and related packages. ### 🧹 Chores - Upgrade [`eas-build`](https://github.com/expo/eas-build) dependencies. ([#2291](https://github.com/expo/eas-cli/pull/2291) by [@expo-bot](https://github.com/expo-bot)) +- Fix asset limit punctuation. ([#2296](https://github.com/expo/eas-cli/pull/2296) by [@quinlanj](https://github.com/quinlanj)) ## [7.6.0](https://github.com/expo/eas-cli/releases/tag/v7.6.0) - 2024-03-18 diff --git a/packages/eas-cli/src/commands/update/index.ts b/packages/eas-cli/src/commands/update/index.ts index 1a55b66d1..93c272f66 100644 --- a/packages/eas-cli/src/commands/update/index.ts +++ b/packages/eas-cli/src/commands/update/index.ts @@ -351,7 +351,7 @@ export default class UpdatePublish extends EasCommand { Log.withInfo( `${platformString} (maximum: ${assetLimitPerUpdateGroup} total per update). ${learnMore( 'https://expo.fyi/eas-update-asset-limits', - { learnMoreMessage: 'Learn more about asset limits.' } + { learnMoreMessage: 'Learn more about asset limits' } )}` ); } catch (e) {