diff --git a/src/vector/platform/index.js b/src/vector/platform/index.js index 45b69a72df..9071420015 100644 --- a/src/vector/platform/index.js +++ b/src/vector/platform/index.js @@ -21,9 +21,9 @@ let Platform = null; if (window && window.process && window.process && window.process.type === 'renderer') { // we're running inside electron - Platform = require('./ElectronPlatform');; + Platform = require('./ElectronPlatform'); } else { - Platform = require('./WebPlatform');; + Platform = require('./WebPlatform'); } export default Platform;