@@ -491,6 +491,7 @@ function ChildReconciler(shouldTrackSideEffects) {
491491 if (
492492 ( typeof newChild === 'string' && newChild !== '' ) ||
493493 typeof newChild === 'number' ||
494+ // $FlowFixMe - flow is not aware of `bigint`
494495 typeof newChild === 'bigint'
495496 ) {
496497 // Text nodes don't have keys. If the previous node is implicitly keyed
@@ -569,6 +570,7 @@ function ChildReconciler(shouldTrackSideEffects) {
569570 if (
570571 ( typeof newChild === 'string' && newChild !== '' ) ||
571572 typeof newChild === 'number' ||
573+ // $FlowFixMe - flow is not aware of `bigint`
572574 typeof newChild === 'bigint'
573575 ) {
574576 // Text nodes don't have keys. If the previous node is implicitly keyed
@@ -633,6 +635,7 @@ function ChildReconciler(shouldTrackSideEffects) {
633635 if (
634636 ( typeof newChild === 'string' && newChild !== '' ) ||
635637 typeof newChild === 'number' ||
638+ // $FlowFixMe - flow is not aware of `bigint`
636639 typeof newChild === 'bigint'
637640 ) {
638641 // Text nodes don't have keys, so we neither have to check the old nor
@@ -1325,6 +1328,7 @@ function ChildReconciler(shouldTrackSideEffects) {
13251328 if (
13261329 ( typeof newChild === 'string' && newChild !== '' ) ||
13271330 typeof newChild === 'number' ||
1331+ // $FlowFixMe - flow is not aware of `bigint`
13281332 typeof newChild === 'bigint'
13291333 ) {
13301334 return placeSingleChild (
0 commit comments