We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1207c2 commit e1f0adfCopy full SHA for e1f0adf
packages/@tailwindcss-upgrade/src/template/codemods/important.ts
@@ -25,7 +25,7 @@ export function important(
25
end: number
26
},
27
): string {
28
- nextCandidate: for (let candidate of parseCandidate(rawCandidate, designSystem)) {
+ for (let candidate of parseCandidate(rawCandidate, designSystem)) {
29
if (candidate.important && candidate.raw[candidate.raw.length - 1] !== '!') {
30
// The important migration is one of the most broad migrations with a high
31
// potential of matching false positives since `!` is a valid character in
@@ -59,7 +59,7 @@ export function important(
59
}
60
61
if (!isQuoteBeforeCandidate || !isQuoteAfterCandidate) {
62
- continue nextCandidate
+ continue
63
64
65
0 commit comments