Skip to content

Commit

Permalink
fix: Stop using nullish coalescing (#1299)
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon committed Apr 11, 2024
1 parent 787cb85 commit 1645d21
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/act-compat.js
@@ -1,7 +1,8 @@
import * as React from 'react'
import * as DeprecatedReactTestUtils from 'react-dom/test-utils'

const reactAct = React.act ?? DeprecatedReactTestUtils.act
const reactAct =
typeof React.act === 'function' ? React.act : DeprecatedReactTestUtils.act

function getGlobalThis() {
/* istanbul ignore else */
Expand Down

0 comments on commit 1645d21

Please sign in to comment.