For some reason, the author's name isn't rendering on the frontend if the author only supplied a first name (one word) using {{ review.author }} or {{ question.author }}.
{{ review.fullName|split(' ')[0] }} and {{ question.fullName|split(' ')[0] }} works as a workaround.
For some reason, the author's name isn't rendering on the frontend if the author only supplied a first name (one word) using
{{ review.author }}
or{{ question.author }}
.{{ review.fullName|split(' ')[0] }}
and{{ question.fullName|split(' ')[0] }}
works as a workaround.