I’m trying to display bulleted points but for some reason it is not working.
My php code:
<?php the_field(‘completion’); ?>
What it looks like on the editor:

What it looks like on the website:

Nvm, found the solution. I added the following to my style.css
li {
list-style-type: disc;
}