TypeError Cannot read property 'notifyDied' of undefined #2132
Replies: 1 comment 3 replies
-
Hey @Dummy26 - I have two different hypotheses: Nodes being modified after an asynchronous task loses a race conditionI adapted your code to a minimum reproducible example here, where you can see the reset action works fine on its own, but with an artificially long async action that comes back after a second reset, we get similar errors:
Calling an action on a detached nodeHowever, that error message I found reads differently than what you posted. Based on the errors you're seeing, it looks like something in your application is calling
I don't see a reset action on anything other than your Let me know if either of those ideas are helpful. If not, it might be good to see more usage examples, or see if you can boil your code down to a minimum reproducible example as well to provide more context. |
Beta Was this translation helpful? Give feedback.
-
I have a TaskModel and a TaskStore which contains - overdue, due and completed tasks
On logout, the stores are reset, but in production sentry reported an error for line -
self.taskStore = tasksStoreModel.create({});
Beta Was this translation helpful? Give feedback.
All reactions