function ChatbotFlow () {
// Import custom nodes and handle states
const nodeTypes = useMemo(() => ({ startNode: StartNode, conditionNode: ConditionNode, msgNode: MsgNode, endNode: EndNode}), []);
As shown above I've already used useMemo to handle new Nodes and I have no idea why that warning still shows. Thank you 🥹