Skip to content

Commit 528fb6c

Browse files
authored
Fix CSS conflict regression (#842)
1 parent 755eb5f commit 528fb6c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/tailwindcss-language-service/src/diagnostics/getCssConflictDiagnostics.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ function getRuleProperties(rule: Rule): string[] {
3333
rule.walkDecls(({ prop }) => {
3434
properties.push(prop)
3535
})
36-
if (properties.findIndex((p) => !isCustomProperty(p)) > -1) {
37-
properties = properties.filter((p) => !isCustomProperty(p))
38-
}
36+
// if (properties.findIndex((p) => !isCustomProperty(p)) > -1) {
37+
// properties = properties.filter((p) => !isCustomProperty(p))
38+
// }
3939
return properties
4040
}
4141

0 commit comments

Comments
 (0)