Skip to content

Commit

Permalink
Fix EventListener fork
Browse files Browse the repository at this point in the history
  • Loading branch information
sebmarkbage committed Sep 28, 2022
1 parent 97d75c9 commit 004bc68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/rollup/forks.js
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ const forks = Object.freeze({
},

// We wrap top-level listeners into guards on www.
'./packages/react-dom/src/events/EventListener.js': (bundleType, entry) => {
'./packages/react-dom-bindings/src/events/EventListener.js': (bundleType, entry) => {
switch (bundleType) {
case FB_WWW_DEV:
case FB_WWW_PROD:
Expand All @@ -495,7 +495,7 @@ const forks = Object.freeze({
return null;
} else {
// Use the www fork which is integrated with TimeSlice profiling.
return './packages/react-dom/src/events/forks/EventListener-www.js';
return './packages/react-dom-bindings/src/events/forks/EventListener-www.js';
}
default:
return null;
Expand Down

0 comments on commit 004bc68

Please sign in to comment.