diff --git a/src/Data.js b/src/Data.js index a364745..d7d6f70 100644 --- a/src/Data.js +++ b/src/Data.js @@ -196,7 +196,7 @@ export default class Data { */ _getValue (key, opts = this.opts) { return ( - _.get(this.data, ['holidays', opts.country, 'states', opts.state, 'regions', opts.regions, key]) || + _.get(this.data, ['holidays', opts.country, 'states', opts.state, 'regions', opts.region, key]) || _.get(this.data, ['holidays', opts.country, 'states', opts.state, key]) || _.get(this.data, ['holidays', opts.country, key]) )