Skip to content

Commit e8e64f0

Browse files
committed
use better name
1 parent b8f010a commit e8e64f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/expandApplyAtRules.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ function processApply(root, context) {
297297
// would have replaced this with something that didn't exist and
298298
// therefore it removed the selector altogether. In this specific
299299
// case it would result in `{}` instead of `.something-unrelated {}`
300-
if (!extractClasses(rule).some((thing) => thing === applyCandidate)) {
300+
if (!extractClasses(rule).some((candidate) => candidate === applyCandidate)) {
301301
rule.remove()
302302
return
303303
}

0 commit comments

Comments
 (0)