You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I use more than ten Links on tha same page, I get the error "warning: possible EventEmitter memory leak detected. 11 listeners added. Use emitter.setMaxListeners() to increase limit. ".
Is this to be expected or am I doing something wrong? It seems that the ActiveState mixin adds the handlers and I can't figure out a way of getting around the error other than using emitter.setMaxListeners() to something high, but it seems weird to me that I should have to do that.
This simple component produces this issue for me
React = require 'react/addons'
Link = require 'react-router/Link'
module.exports = React.createClass
render: ->
React.DOM.div {},
for i in [1...20]
Link {to:'forecast'}, i
The text was updated successfully, but these errors were encountered:
When I use more than ten Links on tha same page, I get the error
"warning: possible EventEmitter memory leak detected. 11 listeners added. Use emitter.setMaxListeners() to increase limit. "
.Is this to be expected or am I doing something wrong? It seems that the ActiveState mixin adds the handlers and I can't figure out a way of getting around the error other than using emitter.setMaxListeners() to something high, but it seems weird to me that I should have to do that.
This simple component produces this issue for me
The text was updated successfully, but these errors were encountered: