diff --git a/CHANGELOG.md b/CHANGELOG.md index 778d474a9f..db67a7706d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## Unreleased +### Fixes + +- Change app start span description from `Cold start` to `Cold Start` and `Warm start` to `Warm Start` ([#2076](https://github.com/getsentry/sentry-dart/pull/2076)) + ### Dependencies - Bump Cocoa SDK from v8.25.2 to v8.26.0 ([#2060](https://github.com/getsentry/sentry-dart/pull/2060)) diff --git a/flutter/lib/src/integrations/native_app_start_integration.dart b/flutter/lib/src/integrations/native_app_start_integration.dart index 616042406a..d3be7b4a0f 100644 --- a/flutter/lib/src/integrations/native_app_start_integration.dart +++ b/flutter/lib/src/integrations/native_app_start_integration.dart @@ -218,7 +218,7 @@ class AppStartInfo { String get appStartTypeOperation => 'app.start.${type.name}'; String get appStartTypeDescription => - type == AppStartType.cold ? 'Cold start' : 'Warm start'; + type == AppStartType.cold ? 'Cold Start' : 'Warm Start'; final pluginRegistrationDescription = 'App start to plugin registration'; final sentrySetupDescription = 'Before Sentry Init Setup'; final firstFrameRenderDescription = 'First frame render';