Skip to content

Commit c9263a1

Browse files
committed
Remove unused variables
1 parent 76ba529 commit c9263a1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/corePlugins/height.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const { asValue, nameClass } = require('../pluginUtils')
22

3-
module.exports = function ({ matchUtilities, jit: { theme } }) {
3+
module.exports = function ({ matchUtilities }) {
44
matchUtilities({
55
h: (modifier, { theme }) => {
66
let value = asValue(modifier, theme['height'])

src/corePlugins/width.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const { asValue, nameClass } = require('../pluginUtils')
22

3-
module.exports = function ({ matchUtilities, jit: { theme } }) {
3+
module.exports = function ({ matchUtilities }) {
44
matchUtilities({
55
w: (modifier, { theme }) => {
66
let value = asValue(modifier, theme['width'])

0 commit comments

Comments
 (0)