Skip to content

Commit

Permalink
remove unneeded quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
oshi97 committed Oct 8, 2021
1 parent 368886d commit 12a7ee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/transform-facets.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export default function transformFacets (facets, config) {
return facet;
}

if (typeof(config.fields[facet.fieldId]) !== 'object') {
if (typeof config.fields[facet.fieldId] !== 'object') {
console.error(
`The "fields" config for ${facet.fieldId} should be an object. ` +
`Received ${config.fields[facet.fieldId]} instead.`);
Expand Down

0 comments on commit 12a7ee8

Please sign in to comment.