From 561444438098821f6cfe400d6a08403629051ce1 Mon Sep 17 00:00:00 2001 From: Pritesh Nandgaonkar Date: Tue, 15 Oct 2019 04:12:36 -0700 Subject: [PATCH] Track the source of the supportform Summary: This diff adds the telemetry to track the source of the support form being launched. Reviewed By: passy Differential Revision: D17908752 fbshipit-source-id: 275812992884a471844fda40d1f636815a4a2346 --- src/dispatcher/application.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/dispatcher/application.tsx b/src/dispatcher/application.tsx index ef36cc87b..bc8b2aa2d 100644 --- a/src/dispatcher/application.tsx +++ b/src/dispatcher/application.tsx @@ -76,6 +76,7 @@ export default (store: Store, logger: Logger) => { }) ); } else if (query === 'flipper://support-form?form=Litho') { + logger.track('usage', 'support-form-source', {source: 'deeplink'}); store.dispatch(setStaticView(SupportRequestFormManager)); } const match = uriComponents(query);