I am working with text component, and I am trying to separate each bullet point in the text with a newline. Does anyone know how to create a newline in the text component.
Let's say the input of the text component is like this:
Hello {{ current_user.firstName || 'friend' }}!
- step 1
- step 2
- step 3
My current output looks like this:
Hello {{ current_user.firstName || 'friend' }}! 1. step 1 2. step 2 3. step 3