0ecff1b581
* add heap * remove hotjar * prettier formatting conflicting with es lint * stop weird prettier/eslint conflict
5 lines
152 B
TypeScript
5 lines
152 B
TypeScript
export function identifyUser(userId: string) {
|
|
const w = window as any // needed to stop weird prettier/eslint conflict
|
|
w?.heap?.identify(userId)
|
|
}
|