Added appointment reminder email + gql fragments for emails.

This commit is contained in:
Patrick Fic
2020-03-04 14:39:19 -08:00
parent dc59d6bd7e
commit 4e214041ae
13 changed files with 121 additions and 32 deletions

View File

@@ -25,7 +25,8 @@ const emailReducer = (state = INITIAL_STATE, action) => {
case EmailActionTypes.SET_EMAIL_OPTIONS:
return {
...state,
emailConfig: { ...action.payload }
emailConfig: { ...action.payload },
visible: true
};
default:
return state;