Skip to content

Commit 5baa201

Browse files
authored
fix(app-start): Cold start should be Cold Start (#2076)
* fix description * update
1 parent 31e875c commit 5baa201

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### Fixes
6+
7+
- 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))
8+
59
### Dependencies
610

711
- Bump Cocoa SDK from v8.25.2 to v8.26.0 ([#2060](https://github.com/getsentry/sentry-dart/pull/2060))

flutter/lib/src/integrations/native_app_start_integration.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ class AppStartInfo {
218218
String get appStartTypeOperation => 'app.start.${type.name}';
219219

220220
String get appStartTypeDescription =>
221-
type == AppStartType.cold ? 'Cold start' : 'Warm start';
221+
type == AppStartType.cold ? 'Cold Start' : 'Warm Start';
222222
final pluginRegistrationDescription = 'App start to plugin registration';
223223
final sentrySetupDescription = 'Before Sentry Init Setup';
224224
final firstFrameRenderDescription = 'First frame render';

0 commit comments

Comments
 (0)