fix(debug): Fix fix recommendation type name display

This commit is contained in:
tecc 2022-11-07 04:14:59 +01:00
parent 615041a927
commit 916adb5f70
No known key found for this signature in database
GPG Key ID: 400AAD881FCC028B

View File

@ -75,7 +75,7 @@ const Fix: FC<FixProps> = ({ id, fix }) => {
id={`${id}-summary`}
>
<div className={"flex flex-col"}>
{fix.recommendation === 0 && (
{fix.recommendation !== 0 && (
<span className={"text-xs uppercase"}>{getNameFromRecommendation(fix.recommendation, i18n)}</span>
)}
<span className={"font-bold"}>{fix.description}</span>