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 761822a commit f435b1aCopy full SHA for f435b1a
packages/replay-internal/src/util/handleRecordingEmit.ts
@@ -139,7 +139,7 @@ export function syncMirrorAttributesFromMutationEvent(event: RecordingEvent): vo
139
const node = record.mirror.getNode(mutation.id);
140
const meta = node && record.mirror.getMeta(node);
141
142
- if (!meta || meta.type !== NodeType.Element) {
+ if (meta?.type !== NodeType.Element) {
143
continue;
144
}
145
0 commit comments