From 3bc8cbc5c53a0dc64efc471df422ddf4b82a7bd7 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Fri, 5 Nov 2021 05:01:32 -0700 Subject: [PATCH] Add comments for remaining events Summary: Ugh, VS Code blocked on the formatter and didn't include these in my previous commit. Reviewed By: mweststrate Differential Revision: D32179985 fbshipit-source-id: e8cf178996bc3b468c88023a5c48e69271758e07 --- desktop/app/src/deeplinkTracking.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/desktop/app/src/deeplinkTracking.tsx b/desktop/app/src/deeplinkTracking.tsx index 8085bd9f3..7c50434ec 100644 --- a/desktop/app/src/deeplinkTracking.tsx +++ b/desktop/app/src/deeplinkTracking.tsx @@ -17,8 +17,8 @@ export type OpenPluginParams = { }; export type DeeplinkInteractionState = - | 'INIT' - | 'ERROR' + | 'INIT' // Sent every time a user enters a deeplink flow + | 'ERROR' // Something went wrong (parsing, etc.) comes with more metadata attached | 'PLUGIN_LIGHTHOUSE_BAIL' // User did not connect to VPN/Lighthouse when asked | 'PLUGIN_STATUS_BAIL' // User did not install the plugin (has `extra` attribute with more information) | 'PLUGIN_DEVICE_BAIL' // User did not launch a new device