remove unnecessary spaces created by prior commit

This commit is contained in:
F53 2024-07-03 16:16:40 -06:00
parent 2331ae13da
commit 3160640007

View file

@ -52,6 +52,7 @@ function generateFix(colorVariables: ColorVariable[], problematicStyle: string)
break; // already found variable to replace it, don't keep looking
}
}
fixedValue.replaceAll(" ", "");
if (fixedValue !== rule.value)
fixes.push(`${rule.property}:${fixedValue}`);
}