Arturs Timofejevs

Results 11 comments of Arturs Timofejevs

Bumping this because Im running into the same issue. I'd like to explain exactly what is happening in the hopes of getting a solution for this problem. In my case,...

Bump, Running into same issue with `recharts` 2.8.0 & react 18 removing `allowDuplicatedCategory` fixes the issue so not large impact for me, but have to condense the duplicates myself.

@ckifer sorry, it happens both on 2.8.0 and 2.9.0 for me :/ I can observe in the tooltip component itself that payload is alywas going to be 0 in this...

Yup Workaround that worked for us is to just build it and copy the build files directly to our project for now

Same problem here, work around for me is the following: ```ts import P from 'pixi.js'; import { PixiComponent } from '@pixi/react'; type FloorPlanGeneratorDataItem = { path: string; }; type FloorPlanGeneratorProps...

@KKzLEO were you able to come to a solution?

bumping this as it still is an issue with the latest release of pixi.js If anyone is stumbling on this, what worked for me is splitting the path into their...

![image](https://github.com/pixijs/pixijs/assets/80407936/22d8233a-cbc6-46fb-bf35-893a4e53e3ef) Seem to be running into the same problem: ```ts viewport.on('zoomed', () => { const lines = VIEWPORT_LINES.map((line) => { const value = line.value(viewport); const valueStr = typeof value ===...

Not sure if it will fix this for you but im just dismount the stage instead.

> Arthur is there a way to do that using the React Pixi stage component? Yup, you can use the key prop for the stage, set that key string in...