Skip to content

Commit 3b5cee8

Browse files
committed
Remove isReactNative check
1 parent a63f43a commit 3b5cee8

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

front_end/panels/timeline/TimelineFlameChartDataProvider.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,9 @@ export class TimelineFlameChartDataProvider extends Common.ObjectWrapper.ObjectW
615615
// In CPU Profiles the trace data will not have frames nor
616616
// screenshots, so we can keep this call as it will be a no-op in
617617
// these cases.
618-
this.#appendFramesAndScreenshotsTrack();
618+
if (!this.isReactNative) {
619+
this.#appendFramesAndScreenshotsTrack();
620+
}
619621

620622
const weight = (track: {type?: string, forMainFrame?: boolean, appenderName?: TrackAppenderName}): number => {
621623
switch (track.appenderName) {

0 commit comments

Comments
 (0)