Add analytics identify() call with hashed email

This commit is contained in:
Paul Frazee 2023-02-28 09:03:44 -08:00
parent d375a45859
commit dcfc13f8d0
4 changed files with 14 additions and 1 deletions

View file

@ -5,6 +5,7 @@ import {RootStoreModel} from 'state/models/root-store'
const _analytics = {
screen(_name: string) {},
track(_name: string, _opts: any) {},
identify(_userId: string, _userTraits: any) {},
}
export const track = _analytics.track
export function useAnalytics() {