@@ -491,6 +491,7 @@ function ChildReconciler(shouldTrackSideEffects) {
491
491
if (
492
492
( typeof newChild === 'string' && newChild !== '' ) ||
493
493
typeof newChild === 'number' ||
494
+ // $FlowFixMe - flow is not aware of `bigint`
494
495
typeof newChild === 'bigint'
495
496
) {
496
497
// Text nodes don't have keys. If the previous node is implicitly keyed
@@ -569,6 +570,7 @@ function ChildReconciler(shouldTrackSideEffects) {
569
570
if (
570
571
( typeof newChild === 'string' && newChild !== '' ) ||
571
572
typeof newChild === 'number' ||
573
+ // $FlowFixMe - flow is not aware of `bigint`
572
574
typeof newChild === 'bigint'
573
575
) {
574
576
// Text nodes don't have keys. If the previous node is implicitly keyed
@@ -633,6 +635,7 @@ function ChildReconciler(shouldTrackSideEffects) {
633
635
if (
634
636
( typeof newChild === 'string' && newChild !== '' ) ||
635
637
typeof newChild === 'number' ||
638
+ // $FlowFixMe - flow is not aware of `bigint`
636
639
typeof newChild === 'bigint'
637
640
) {
638
641
// Text nodes don't have keys, so we neither have to check the old nor
@@ -1325,6 +1328,7 @@ function ChildReconciler(shouldTrackSideEffects) {
1325
1328
if (
1326
1329
( typeof newChild === 'string' && newChild !== '' ) ||
1327
1330
typeof newChild === 'number' ||
1331
+ // $FlowFixMe - flow is not aware of `bigint`
1328
1332
typeof newChild === 'bigint'
1329
1333
) {
1330
1334
return placeSingleChild (
0 commit comments