What is the precise risk of this recursive component, and when does it manifest?function Comments({ comment }) { return ( <div> <p>{comment.text}</p> <Comments comment={comment} /> </div> ); }