Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Nov 29, 2017
1 parent 6e2bca3 commit 73ce7c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/events/EventPluginRegistry.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,11 +233,12 @@ export function injectEventPluginsByName(
const names = Object.keys(injectedNamesToPlugins).join(', ');
lowPriorityWarning(
false,
`Injecting custom event plugins (${names}) is deprecated ` +
'Injecting custom event plugins (%s) is deprecated ' +
'and will not work in React 17+. Please update your code ' +
'to not depend on React internals. The stack trace for this ' +
'warning should reveal the library that is using them. ' +
'See https://github.com/facebook/react/issues/11689 for a discussion.',
names,
);
}
}
Expand Down

0 comments on commit 73ce7c5

Please sign in to comment.