Skip to content

Commit f35adcb

Browse files
karaalxhub
authored andcommitted
fix(core): update feature usage marker (#53542)
This commit updates the name of the 'performance.mark' counter used to track feature usage. It now matches the name agreed upon by W3C for this use case: w3c/user-timing#108 PR Close #53542
1 parent ce10767 commit f35adcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/util/performance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ export function performanceMarkFeature(feature: string): void {
2121
return;
2222
}
2323
markedFeatures.add(feature);
24-
performance?.mark?.('mark_use_counter', {detail: {feature}});
24+
performance?.mark?.('mark_feature_usage', {detail: {feature}});
2525
}

0 commit comments

Comments
 (0)