Front: Hide Ratings with value equals 0

This commit is contained in:
Arthur Jamet 2024-08-07 15:35:19 +02:00 committed by Zoe Roux
parent ddc3e8f61a
commit 605756a794

View File

@ -329,7 +329,7 @@ export const TitleLine = ({
<View
{...css({ flexDirection: "row", alignItems: "center", justifyContent: "center" })}
>
{rating !== null && (
{rating !== null && rating !== 0 && (
<>
<DottedSeparator
{...css({ color: { xs: theme.user.contrast, md: theme.colors.white } })}