Ver código fonte

Fix eslint issue in FeatureTable

Stelios Vitalis 4 anos atrás
pai
commit
e882da6a73
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      src/utilities/FeatureTable.js

+ 1 - 1
src/utilities/FeatureTable.js

@@ -55,7 +55,7 @@ export class FeatureTable {
 			const featureType = feature.type || defaultType;
 			const featureType = feature.type || defaultType;
 			const featureComponentType = feature.componentType || defaultComponentType;
 			const featureComponentType = feature.componentType || defaultComponentType;
 
 
-			if ( 'type' in feature && defaultType && feature.type !== defaultType) {
+			if ( 'type' in feature && defaultType && feature.type !== defaultType ) {
 
 
 				throw new Error( 'FeatureTable: Specified type does not match expected type.' );
 				throw new Error( 'FeatureTable: Specified type does not match expected type.' );