We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cea0ef2 commit 20317baCopy full SHA for 20317ba
packages/plugin-session-replay-browser/src/helpers.ts
@@ -9,10 +9,7 @@ export const parseUserProperties = (event: Event) => {
9
const userPropertyKeys = Object.keys(event.user_properties);
10
11
userPropertyKeys.forEach((identifyKey) => {
12
- if (
13
- Object.values(IdentifyOperation).includes(identifyKey as IdentifyOperation) &&
14
- PROPERTY_ADD_OPERATIONS.includes(identifyKey as IdentifyOperation)
15
- ) {
+ if (PROPERTY_ADD_OPERATIONS.includes(identifyKey as IdentifyOperation)) {
16
const typedUserPropertiesOperation =
17
event.user_properties && (event.user_properties[identifyKey as IdentifyOperation] as Record<string, any>);
18
userPropertiesObj = {
0 commit comments