theprogrammablemind_4wp 7.5.0-beta.40 → 7.5.0-beta.41

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/helpers.js +1 -1
package/package.json CHANGED
@@ -61,6 +61,6 @@
61
61
  "json-stable-stringify": "^1.0.1",
62
62
  "node-fetch": "^2.6.1"
63
63
  },
64
- "version": "7.5.0-beta.40",
64
+ "version": "7.5.0-beta.41",
65
65
  "license": "ISC"
66
66
  }
package/src/helpers.js CHANGED
@@ -227,7 +227,7 @@ const validProps = (valids, object, type) => {
227
227
  }
228
228
  }
229
229
  if (!okay) {
230
- throw `Unknown property "${prop}" in the ${type}. Valid properties are ${valid}. The ${type} is ${JSON.stringify(object)}`
230
+ throw `Unknown property "${prop}" in the ${type}. Valid properties are ${valids}. The ${type} is ${JSON.stringify(object)}`
231
231
  }
232
232
  }
233
233
  }