@adamjanicki/ui 1.7.3 → 1.7.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/utils/transformVfx.js +1 -1
package/package.json
CHANGED
package/utils/transformVfx.js
CHANGED
|
@@ -190,7 +190,7 @@ export default function transformVfx(vfx) {
|
|
|
190
190
|
var classes = [];
|
|
191
191
|
Object.entries(vfx).forEach(function (_a) {
|
|
192
192
|
var key = _a[0], value = _a[1];
|
|
193
|
-
if (value
|
|
193
|
+
if (value) {
|
|
194
194
|
var transformer = transformers[key];
|
|
195
195
|
transformer(classes, vfx);
|
|
196
196
|
}
|