8000 Simplify apply handling · fonsekaean/tailwindcss@e010788 · GitHub
Skip to content

Commit e010788

Browse files
committed
Simplify apply handling
Pulling from perParentApplies here is unncessary as it’s never going to get any value
1 parent 1cc1ace commit e010788

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/expandApplyAtRules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ function processApply(root, context, localCache) {
309309

310310
// Collect all apply candidates and their rules
311311
for (let apply of applies) {
312-
let candidates = perParentApplies.get(apply.parent) || []
312+
let candidates = []
313313

314314
perParentApplies.set(apply.parent, [candidates, apply.source])
315315

0 commit comments

Comments
 (0)