Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Martynov committed Jun 17, 2019
2 parents c19d483 + e3192ac commit 9e08b31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { cloneDeep } from 'lodash';
import store from './stores'
import * as game from './stores/game';

import * as gameStates from './stores/game/gameState';
import * as GameStates from './stores/game/gameState';

import App from './App';
import * as serviceWorker from './serviceWorker';
Expand Down Expand Up @@ -41,7 +41,7 @@ const onKeyUp = ({ code }) => {

const onBlur = () => {
keysWatcher.reset();
if (getGameState() === gameStates.GAME_STATE_PLAYING) {
if (getGameState() === GameStates.GAME_STATE_PLAYING) {
pauseGame();
}
};
Expand Down

0 comments on commit 9e08b31

Please sign in to comment.