Skip to content
This repository has been archived by the owner on Apr 6, 2021. It is now read-only.

Commit

Permalink
Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwathan committed Mar 19, 2021
1 parent 76ba529 commit c9263a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/corePlugins/height.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { asValue, nameClass } = require('../pluginUtils')

module.exports = function ({ matchUtilities, jit: { theme } }) {
module.exports = function ({ matchUtilities }) {
matchUtilities({
h: (modifier, { theme }) => {
let value = asValue(modifier, theme['height'])
Expand Down
2 changes: 1 addition & 1 deletion src/corePlugins/width.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { asValue, nameClass } = require('../pluginUtils')

module.exports = function ({ matchUtilities, jit: { theme } }) {
module.exports = function ({ matchUtilities }) {
matchUtilities({
w: (modifier, { theme }) => {
let value = asValue(modifier, theme['width'])
Expand Down

0 comments on commit c9263a1

Please sign in to comment.