Skip to content

Commit

Permalink
nit: remove unnecessary semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathantneal committed Aug 23, 2021
1 parent 2884c5a commit 537ce03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/features/css.js
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ const getTargetVariantsToAdd = (
else continue targetVariants
}

;(targetVariantsToAdd[vOrder] = targetVariantsToAdd[vOrder] || []).push([isCompoundVariant ? `cv` : `${vName}-${vMatch[vName]}`, vStyle])
(targetVariantsToAdd[vOrder] = targetVariantsToAdd[vOrder] || []).push([isCompoundVariant ? `cv` : `${vName}-${vMatch[vName]}`, vStyle])
}

return targetVariantsToAdd
Expand Down

0 comments on commit 537ce03

Please sign in to comment.