diff options
author | Ansh <anshnanda10@gmail.com> | 2023-12-19 03:54:06 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-18 14:24:06 -0800 |
commit | 7af482591195d8a5fc1f02b4cddbe41a583e8108 (patch) | |
tree | 9f77f156b034ba53fdc91eb0345f28a9e4447302 /src/state | |
parent | 3e3a72a366f2b05ed987af67736ec3f0e2f60272 (diff) | |
download | voidsky-7af482591195d8a5fc1f02b4cddbe41a583e8108.tar.zst |
fix Create Account metrics (#2242)
Diffstat (limited to 'src/state')
-rw-r--r-- | src/state/session/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/state/session/index.tsx b/src/state/session/index.tsx index 7cdbe6bb8..aa8c94ebc 100644 --- a/src/state/session/index.tsx +++ b/src/state/session/index.tsx @@ -189,6 +189,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { }, logger.DebugContext.session, ) + track('Try Create Account') const agent = new BskyAgent({service}) @@ -231,6 +232,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { }, logger.DebugContext.session, ) + track('Create Account') }, [upsertAccount, queryClient], ) |