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
Hi, thank you for your time and for all the great work on this project!
I’m currently using v3.4.3 with React 19 and Tanstack Start v1.114.27, and I’ve run into an issue.
I’m getting the following error when performing any action on a node (clicking, toggling, etc.) other than moving:
From debugging, it looks like this is initially undefined, then correctly holds the tree value on the second run—though by that point, the error has already occurred. I’m not sure why it runs twice.
Here’s a simplified version of my setup:
Data Type:
exporttypeDataItem={name: string;icon: string;id: string;isOpen?: boolean;children?: DataItem[];};// Define the type for the full data structureexporttypeData=DataItem[];
Hi, thank you for your time and for all the great work on this project!
I’m currently using v3.4.3 with React 19 and Tanstack Start v1.114.27, and I’ve run into an issue.
I’m getting the following error when performing any action on a node (clicking, toggling, etc.) other than moving:
From debugging, it looks like
this
is initiallyundefined
, then correctly holds thetree
value on the second run—though by that point, the error has already occurred. I’m not sure why it runs twice.Here’s a simplified version of my setup:
Data Type:
Tree rendering logic:
Node logic:
I’d really appreciate any insights into what might be causing this. Thanks in advance for your help or workarounds! 🙏
The text was updated successfully, but these errors were encountered: