From d47cbc7c11bfa910ae247626842bea1481b6a8da Mon Sep 17 00:00:00 2001 From: Ariel Demarco Date: Mon, 9 Dec 2024 16:28:39 -0300 Subject: [PATCH] Disabling ttfr by default --- .../Capture/UX/View/ViewCaptureService+Options.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/EmbraceCore/Capture/UX/View/ViewCaptureService+Options.swift b/Sources/EmbraceCore/Capture/UX/View/ViewCaptureService+Options.swift index 97f7886b..78d0ccd3 100644 --- a/Sources/EmbraceCore/Capture/UX/View/ViewCaptureService+Options.swift +++ b/Sources/EmbraceCore/Capture/UX/View/ViewCaptureService+Options.swift @@ -32,7 +32,7 @@ extension ViewCaptureService { } @objc public convenience override init() { - self.init(instrumentVisibility: true, instrumentFirstRender: true) + self.init(instrumentVisibility: true, instrumentFirstRender: false) } } }