diff --git a/package.json b/package.json index 30df4b3..3d228d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tfoosball", - "version": "2.2.0", + "version": "2.2.1", "private": true, "devDependencies": { "autoprefixer": "6.5.1", diff --git a/src/shared/auth/auth.reducer.js b/src/shared/auth/auth.reducer.js index 27a1d56..d9c85b0 100644 --- a/src/shared/auth/auth.reducer.js +++ b/src/shared/auth/auth.reducer.js @@ -1,7 +1,6 @@ import * as types from './auth.types'; import { REQUEST_SAVE_PROFILE, REQUEST_SAVE_MEMBER, SETTINGS_SAVED, - WHATS_NEW_SHOWN } from '../../settings/settings.actions'; export const profile = (state = {}, action) => { @@ -11,7 +10,7 @@ export const profile = (state = {}, action) => { return Object.assign({}, state, action.partialData); case SETTINGS_SAVED: return Object.assign({}, state, action.values); - case WHATS_NEW_SHOWN: + case types.WHATS_NEW_SHOWN: return Object.assign({}, state, {whats_new_version: action.version}); default: return state; diff --git a/src/shared/shared.sagas.js b/src/shared/shared.sagas.js index b5cfb03..75292ed 100644 --- a/src/shared/shared.sagas.js +++ b/src/shared/shared.sagas.js @@ -28,6 +28,7 @@ export function* whatsNewModal() { • Fix new match bug on mobile • Fix infinite authentication loop bug • Fix match deletion permissions bug + • Fix what's new modal bug `, onAccept: () => { },