Skip to content

Commit eb836a2

Browse files
committed
Fix hiding success user activation snackbar
1 parent 46bb6d1 commit eb836a2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

app/reducers/authReducer.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,8 @@ const auth = (state = initialState, action) => {
8585
return {...state, showLoginPassword: !state.showLoginPassword};
8686
case authActionTypes.SET_LOGIN_ERROR_MESSAGE:
8787
return {...state, loginErrorMessage: action.payload};
88+
case authActionTypes.SET_ACTIVATION_SUCCESS_MESSAGE:
89+
return {...state, activationSuccessMessage: action.payload};
8890
default:
8991
return state;
9092
}

0 commit comments

Comments
 (0)