react-router-dom throws MiniSignalBinding error when trying to route out of pixi-reactive-elements
Closed this issue · 2 comments
Hello mcastiello,
I tried to activate the routing in my craco and pixi-reactive setup and found out that the pages with pixi-elements throws errors when I try to navigate away from them (or between them). Then the following error is triggered:
From all routes without pixi-elements the routing works fine. It seems like the error message comes from the Pixi-loader trying to detach some mini-signal-binding. Luckily the error can be clicked away and is not visible in production.
Do you have any idea how I can fix them?
My dependencies are:
"react": "^17.0.2",
"react-dom": "^17.0.2",
"web-vitals": "^2.1.0",
"pixi.js": "^5.3.7",
"pixi-reactive":"^1.3.10",
"@craco/craco":"^6.4.3",
"react-router-dom": "^6.2.1"
I think I've found the bug, I'll push an update as soon as I can.
the parameter required by detach
is not the callback
but the return value of the add
method on the line above.
I've updated the code, new version is 1.3.11
. Give it a try and see if it happens again.