From 4eb404ae2dd8b053dc0c5020fc6f191da5f947af Mon Sep 17 00:00:00 2001 From: Ilias Trichopoulos Date: Wed, 3 May 2023 14:04:53 +0200 Subject: [PATCH] Update posthog event name --- src/components/NetworkSwitch.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/NetworkSwitch.tsx b/src/components/NetworkSwitch.tsx index 581d3b2da..76e9f83bc 100644 --- a/src/components/NetworkSwitch.tsx +++ b/src/components/NetworkSwitch.tsx @@ -74,7 +74,7 @@ const NetworkSwitch = () => { if (networkId !== undefined) { dispatch(networkPresetSwitched(networkName)) - posthog?.capture('Changed network', { network_name: networkName }) + posthog?.capture('Changed network from app header', { network_name: networkName }) return } }