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 87e886b commit e5bbdb0Copy full SHA for e5bbdb0
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