File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -371,7 +371,7 @@ export default class MutationBuffer {
371
371
if (
372
372
isParentRemoved ( this . removesSubTreeCache , n , this . mirror ) &&
373
373
! this . movedSet . has ( parentNode ! ) &&
374
- ( ! this . addedSet . has ( parentNode ! ) )
374
+ ! this . addedSet . has ( parentNode ! )
375
375
) {
376
376
continue ;
377
377
}
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ import {
83
83
getPositionsAndIndex ,
84
84
uniqueTextMutations ,
85
85
StyleSheetMirror ,
86
- type ResolveTree
86
+ type ResolveTree ,
87
87
} from '../utils' ;
88
88
import getInjectStyleRules from './styles/inject-style' ;
89
89
import './styles/style.css' ;
@@ -1714,7 +1714,7 @@ export class Replayer {
1714
1714
ids . add ( tree . value . node . id ) ;
1715
1715
if ( tree . children && tree . children . length > 1 ) {
1716
1716
const res = nodeIdsToBeAdded ( tree . children ) ;
1717
- res . forEach ( id => ids . add ( id ) ) ;
1717
+ res . forEach ( ( id ) => ids . add ( id ) ) ;
1718
1718
}
1719
1719
}
1720
1720
return ids ;
You can’t perform that action at this time.
0 commit comments