diff --git a/lib/shared/store.js b/lib/shared/store.js index 575e5f63..6883f466 100644 --- a/lib/shared/store.js +++ b/lib/shared/store.js @@ -458,16 +458,6 @@ const storeReducer = (state = DEFAULT_STATE, action) => { }) } - const invalidKey = _.find(_.keys(action.data), (key) => { - return !_.isString(key) - }) - - if (!_.isNil(invalidKey)) { - throw errors.createError({ - title: `Invalid setting key: ${invalidKey}` - }) - } - const invalidPair = _.find(_.toPairs(action.data), (pair) => { return _.isObject(_.last(pair)) })