diff --git a/packages/core/src/util/performance.ts b/packages/core/src/util/performance.ts index 77b9b86176d53..7c05b20a41e11 100644 --- a/packages/core/src/util/performance.ts +++ b/packages/core/src/util/performance.ts @@ -21,5 +21,5 @@ export function performanceMarkFeature(feature: string): void { return; } markedFeatures.add(feature); - performance?.mark?.('mark_use_counter', {detail: {feature}}); + performance?.mark?.('mark_feature_usage', {detail: {feature}}); }