We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a59a35f commit 5e9aeccCopy full SHA for 5e9aecc
1 file changed
src/setup/telemetry/index.ts
@@ -41,12 +41,6 @@ export default function (): void {
41
op: CONST.TELEMETRY.SPAN_APP_STARTUP,
42
});
43
44
- // getEntriesByName() queries the JS-side entry store, which is only populated after
45
- // CONTENT_APPEARED fires (emitBufferedMarks). Since this code runs during JS bundle
46
- // execution — before content appears — the sync check always returns [].
47
- // Use a PerformanceObserver with type 'react-native-mark' (native marks arrive as
48
- // PerformanceReactNativeMark, not PerformanceMark) and buffered: true so it fires
49
- // when CONTENT_APPEARED flushes the native mark buffer to JS.
50
let jsParseStartMs: number | undefined;
51
const observer = new PerformanceObserver((list) => {
52
for (const entry of list.getEntries()) {
0 commit comments