Open
The Star Rating block includes the option to display custom icons (e.g. hearts) instead of the default dash-icon stars.
These display correctly in the back end, but are missing on the front end.
Currently it is only possible to display star icons.
It looks like CSS code is broken. Adding this to your style.css file will cause it to render:
.tb-rating__star::before {
content: ‘★’; /* Unicode star character */
color: gold; /* Optional: Set the color of the star */
}