We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to set more questions. The questions should be printed in new messages like
Question 1 Question 2 Question 3
I am trying to set question with the help of below code but it is printing the last question only i.e Question 3. As
convState.current.next = convState.newState({ type: 'select', noAnswer: true, name: 'dynamic-question-'+count, questions: ['Question 1'], }); convState.current.next = convState.newState({ type: 'select', noAnswer: true, name: 'dynamic-question-'+count, questions: ['Question 2'], });
convState.current.next = convState.newState({ type: 'select', noAnswer: true, name: 'dynamic-question-'+count, questions: ['Question 3'], });
Please suggest.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to set more questions. The questions should be printed in new messages like
Question 1
Question 2
Question 3
I am trying to set question with the help of below code but it is printing the last question only i.e Question 3. As
convState.current.next = convState.newState({
type: 'select',
noAnswer: true,
name: 'dynamic-question-'+count,
questions: ['Question 1'],
});
convState.current.next = convState.newState({
type: 'select',
noAnswer: true,
name: 'dynamic-question-'+count,
questions: ['Question 2'],
});
Please suggest.
The text was updated successfully, but these errors were encountered: