Skip to content

Commit

Permalink
many semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
dbkr committed Nov 4, 2016
1 parent a6d029c commit 9a00ec1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vector/platform/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit 9a00ec1

Please sign in to comment.