Skip to content

Commit daf9a49

Browse files
committed
Fix decl map using incorrect value
1 parent e408cab commit daf9a49

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/postcss-plugins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports.extractThemeRulesPlugin = postcss.plugin('postcss-extract-theme-r
3030
value += ' !important';
3131
}
3232

33-
declMap[decl.prop] = decl.value;
33+
declMap[decl.prop] = value;
3434
decl.remove();
3535
}
3636
});

0 commit comments

Comments
 (0)