diff --git a/src/flowTypes.ts b/src/flowTypes.ts index 964e03de..3880b94e 100644 --- a/src/flowTypes.ts +++ b/src/flowTypes.ts @@ -1,6 +1,6 @@ import { Methods } from 'components/flow/routers/webhook/helpers'; import { FlowTypes, Operators, Types, ContactStatus } from 'config/interfaces'; -import {Scheme} from "./config/typeConfigs"; +import { Scheme } from './config/typeConfigs'; // we don't concern ourselves with patch versions export const SPEC_VERSION = '13.1'; diff --git a/src/index.js b/src/index.js index 5df129c5..38809226 100644 --- a/src/index.js +++ b/src/index.js @@ -7,7 +7,7 @@ import ReactDOM from 'react-dom'; import * as serviceWorker from './serviceWorker'; import { setHTTPTimeout } from 'external'; -import {SCHEMES} from "./config/typeConfigs"; +import { SCHEMES } from './config/typeConfigs'; // bring in our temba-components if they aren't already registered var componentsExist = @@ -24,7 +24,7 @@ window.showFlowEditor = (ele, config) => { setHTTPTimeout(config.httpTimeout); } //<*((==< - if ( config.schemes ) { + if (config.schemes) { SCHEMES.concat(config.schemes); }